-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 796 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
{
"name": "northwind-qa",
"version": "0.1.0",
"description": "Playwright E2E suite for the Northwind Goods storefront",
"private": true,
"type": "module",
"scripts": {
"pretest": "playwright install chromium",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"install:browsers": "playwright install --with-deps chromium",
"typecheck": "tsc --noEmit"
},
"keywords": ["qa", "playwright", "e2e", "northwind"],
"author": "Wei Jia",
"license": "MIT",
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@playwright/test": "^1.48.0",
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
}
}