-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.22 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.22 KB
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
{
"devDependencies": {
"@currents/playwright": "^1.3.2",
"@playwright/test": "^1.49.1",
"@types/node": "^20.14.0",
"playwright-merge-summary-json-reports": "^1.0.4",
"playwright-slack-report": "^1.1.81"
},
"scripts": {
"test": "npx playwright test --grep-invert @axe",
"debug": "npx playwright test --headed --timeout=0 --workers=1 --grep-invert @axe",
"happy": "npx playwright test --grep /@happy|@smoke/ --grep-invert @axe",
"smoke": "npx playwright test -g '@happy|@smoke'",
"axe": "npx playwright test --grep @axe",
"AB": "npx playwright test -g '@2|@3'",
"A": "npx playwright test -g @1 --grep-invert @3",
"merge": "npx ts-node lib/metrics/mergeReports.ts",
"test:merge": "npx playwright test --grep-invert @api --workers=3 || true && npx ts-node updateBlob.ts && npx playwright test --grep @api --workers=1 || true && npx ts-node updateBlob.ts && npx playwright merge-reports --reporter html ./all-blob-reports && npx playwright show-report"
},
"dependencies": {
"@axe-core/playwright": "^4.9.1",
"dotenv": "^16.4.5",
"genson-js": "^0.0.8",
"playwright-json-summary-reporter": "^1.0.1",
"playwright-merge-html-reports": "^0.2.8",
"ts-node": "^10.9.2"
}
}