-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 898 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
25
26
27
{
"name": "e2e-tests",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:ui": "playwright test --ui",
"test:chromium": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"test:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
"test:critical": "playwright test tests/auth.spec.ts tests/job-creation.spec.ts tests/search.spec.ts",
"show-report": "playwright show-report",
"seed-db": "tsx fixtures/seed-database.ts"
},
"dependencies": {
"pg": "^8.13.1"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@types/node": "^25.9.3",
"@types/pg": "^8.11.10",
"tsx": "^4.19.2"
}
}