-
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) · 858 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"scripts": {
"start": "serve",
"clean": "rm -rf test-results && rm -rf playwright-report && rm -rf junit-results",
"test": "npm run clean && npx playwright test --project=chromium --config=./playwright.config.ts",
"test-headed": "npm run clean && npx playwright test --project=chromium --config=./playwright.config.ts --headed",
"test-visual": "npm run clean && npx playwright test --project=visual --config=./playwright.config.ts",
"test-visual:update": "npm run test-visual --update-snapshots",
"test-api": "npm run clean && npx playwright test --project=api --config=./playwright.config.ts"
},
"dependencies": {
"todomvc-app-css": "2.4.3",
"serve": "14.2.4"
},
"devDependencies": {
"dotenv": "16.4.7",
"@playwright/test": "1.50.1",
"@types/node": "22.13.1",
"playwright": "1.50.1"
}
}