-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 827 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "rode-runner-tests",
"version": "1.0.0",
"description": "Playwright automation test suite for Rode Runner",
"scripts": {
"serve": "npx serve src -p 3000",
"test": "npx playwright test",
"test:positive": "npx playwright test tests/positive.spec.js",
"test:negative": "npx playwright test tests/negative.spec.js",
"test:edge": "npx playwright test tests/edge-cases.spec.js",
"test:agent": "npx playwright test tests/agent-generated.spec.js",
"test:all": "npx playwright test --reporter=html,json",
"test:headed": "npx playwright test --headed",
"test:debug": "npx playwright test --debug",
"report": "npx playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"serve": "^14.2.3"
}
}