-
-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 857 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
{
"name": "lightnvr",
"version": "1.0.0",
"description": "LightNVR Integration Tests",
"engines": {
"node": ">=24.11.0 <25"
},
"scripts": {
"test": "npx playwright test",
"test:api": "npx playwright test --grep @api",
"test:ui": "npx playwright test --grep @ui",
"test:go2rtc": "npx playwright test --grep @go2rtc",
"test:report": "npx playwright show-report",
"test:load": "node --experimental-strip-types tests/load/index.ts",
"test:load:api": "node --experimental-strip-types tests/load/index.ts --tags api",
"test:load:html": "node --experimental-strip-types tests/load/index.ts --tags html",
"test:load:heavy": "node --experimental-strip-types tests/load/index.ts -n 1000 -c 50"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"playwright": "^1.62.1",
"sharp": "^0.35.4"
}
}