-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 964 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 964 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
28
29
30
31
{
"name": "playwright-example",
"version": "1.0.",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:report": "npx playwright test && npx playwright show-report",
"test:first": "npx playwright test --grep first --headed && npx playwright show-report",
"test:chromium": "npx playwright test --project chromium",
"test:local": "BASE_URL=http://localhost:4200, npx playwright test && npx playwright show-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aisabel/Playwright-example"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aisabel/Playwright-example/issues"
},
"homepage": "https://github.com/aisabel/Playwright-example#readme",
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/node": "^22.14.1"
},
"dependencies": {
"playwright": "^1.52.0"
}
}