-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (28 loc) · 1.3 KB
/
package.json
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
{
"name": "boilerplate-playwrite-playwrightreport",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"Alltests-Headless": "npx playwright test",
"Alltests-Headed": "npx playwright test --headed",
"Tests:Headless-on-Chromium": "npx playwright test --project=chromium",
"Tests:Headless-on-Firefox": "npx playwright test --project=firefox",
"Tests:Headless-on-Safari": "npx playwright test --project=webkit",
"Tests:Headless-on-mobileChrome-Pixel5": "npx playwright test --project=MobileChrome",
"Tests:Headless-on-mobileSafari-Iphone12": "npx playwright test --project=MobileSafari",
"Tests:Headed-on-Chromium": "npx playwright test --project=chromium --headed",
"Tests:Headed-on-Firefox": "npx playwright test --project=firefox --headed",
"Tests:Headed-on-Safari": "npx playwright test --project=webkit --headed",
"Tests:Headed-on-mobileChrome-Pixel5": "npx playwright test --project=MobileChrome",
"Tests:Headed-on-mobileSafari-Iphone12": "npx playwright test --project=MobileSafari",
"open:PlaywriteReport": "npx playwright show-report",
"open:CodeGenerator": "npx playwright codegen playwright.dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.27.1"
}
}