-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.43 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.43 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
{
"name": "playwright",
"version": "1.0.0",
"license": "ISC",
"description": "OpenC3 integration testing",
"scripts": {
"test": "pnpm test:parallel --quiet && pnpm test:serial --quiet",
"test:parallel": "playwright test ./tests/*.p.spec.ts --project=chromium && playwright test ./tests/**/*.p.spec.ts --project=chromium",
"test:serial": "playwright test ./tests/**/*.s.spec.ts --project=chromium --workers=1",
"test:enterprise": "ENTERPRISE=1 playwright test ./tests/enterprise/*.spec.ts --project=chromium --workers=1",
"test:keycloak": "ENTERPRISE=1 playwright test ./tests/keycloak.setup.ts --workers=1",
"fixlinux": "cp ./context.js node_modules/istanbul-lib-report/lib/context.js",
"fixwindows": "copy .\\context.js node_modules\\istanbul-lib-report\\lib\\context.js",
"coverage": "nyc report --reporter=html",
"cobertura": "nyc report --reporter=cobertura",
"clean": "rm -rf .nyc_output || rmdir /s /q .nyc_output; rm -rf coverage || rmdir /s /q coverage; rm -rf test-results || rmdir /s /q test-results",
"format": "prettier -w ./"
},
"dependencies": {
"@playwright/test": "1.57.0",
"date-fns": "4.1.0",
"jszip": "^3.10.1",
"nyc": "^17.1.0",
"prettier": "^3.7.3"
},
"devDependencies": {
"@types/node": "^24.10.1"
},
"nyc": {
"excludeAfterRemap": false,
"all": true,
"cache": false,
"extension": [
".js",
".ts",
".vue"
]
}
}