-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 971 Bytes
/
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
{
"name": "demo-playwright",
"version": "1.0.0",
"description": "Just a quick demo for Playwright",
"author": {
"name": "El Zinho",
"email": "jfkalostro@gmail.com"
},
"packageManager": "yarn@3.2.3",
"scripts": {
"test:api:demo": "yarn playwright test demo.api.spec.ts --project demo-api",
"test:ui:demo": "yarn playwright test demo.spec.ts --project chromium webkit firefox",
"test:ui:demo:headed": "yarn playwright test demo.spec.ts --headed",
"test:ui:demo:chrome:headed": "yarn playwright test demo.spec.ts --headed --project chromium",
"test:ui:demo:safari:headed": "yarn playwright test demo.spec.ts --headed --project webkit",
"test:ui:demo:firefox:headed": "yarn playwright test demo.spec.ts --headed --project firefox",
"test:report": "npx playwright show-report pw-results/reports/html-report"
},
"devDependencies": {
"@playwright/test": "^1.25.1",
"chalk": "^4.1.2"
},
"license": "UNLICENSED"
}