-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "test-framework",
"version": "1.0.0",
"description": "QA Automation CLI Tool",
"main": "index.js",
"scripts": {
"test": "npm run test:pw",
"test:pw": "playwright test",
"test:pw:ui": "playwright test --ui",
"test:pw:headed": "playwright test --headed",
"test:pw:debug": "playwright test --debug",
"test:pw:report": "playwright show-report test-results/html-report",
"test:pw:codegen": "playwright codegen",
"test:pw:api": "playwright test tests/e2e/api.spec.ts",
"test:pw:e2e": "playwright test tests/e2e/",
"test:pw:burn-in": "bash scripts/burn-in-changed.sh",
"test:pw:burn-in:strict": "bash scripts/burn-in-changed.sh 10",
"test:ci": "playwright test --reporter=list,junit"
},
"keywords": [
"qa",
"testing",
"playwright",
"automation"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@playwright/test": "^1.50.0",
"@types/node": "^22.0.0",
"dotenv": "^16.4.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0"
},
"optionalDependencies": {
"ajv": "^8.17.0",
"zod": "^3.24.0"
},
"engines": {
"node": ">=22.0.0"
}
}