init: базовая структура АТ

This commit is contained in:
Vlad Smykov
2026-01-26 17:50:18 +03:00
commit 2cae137c8c
11 changed files with 916 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "digitaltwin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:clean": "rm -rf allure-results allure-report",
"test:ui": "npx playwright test tests/ui",
"test:api": "npx playwright test tests/api",
"report": "npx playwright show-report",
"allure:report": "allure generate ./allure-results --clean -o ./allure-report && allure open ./allure-report"
},
"keywords": [],
"author": "Vlad Smykov",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@playwright/test": "^1.57.0",
"allure-playwright": "^3.4.5",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.3"
}
}