-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 838 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "lightnvr",
"version": "1.0.0",
"description": "LightNVR Integration Tests",
"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.56.1",
"playwright": "^1.56.1",
"puppeteer": "^24.37.3",
"sharp": "^0.34.5"
}
}