-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "e2e-playwright-typescript-framework-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:allure": "npm run test:params && npm run allure:generate",
"test:params": "sh ./run-with-params.sh",
"allure:generate": "allure generate ./allure-results --clean -o ./allure-report",
"allure:open": "allure open ./allure-report",
"test:env": "TAG='@smoke' BROWSER='chromium' WORKERS=2 RETRIES=1 TEST_ENV='qa1' npm run test:allure",
"test:env:debug":"TAG='@smoke' BROWSER='chromium' WORKERS=2 RETRIES=1 TEST_ENV='qa1' npx playwright test $@"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@playwright/test": "^1.53.1",
"allure-playwright": "^3.3.0",
"dotenv": "^17.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"dotenv-flow": "^4.1.0",
"winston": "^3.17.0"
}
}