-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 907 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "playwright-code-examples",
"version": "1.0.0",
"description": "Automated software testing with Playwright",
"main": "index.js",
"scripts": {
"test:chrome": "npx playwright test --project=Chromium",
"test:firefox": "npx playwright test --project=Firefox",
"test:webkit": "npx playwright test --project=Webkit",
"test:e2e": "npx playwright test --config=e2e.config.ts --project=Chromium",
"test:visual": "npx playwright test --config=visual.config.ts",
"test:visual:update": "npx playwright test --config=visual.config.ts --update-snapshots",
"test:api": "npx playwright test --config=api.config.ts --project=Chromium --reporter=list",
"jenkins-server": "java -jar jenkins.war --httpPort=8080 --enable-future-java"
},
"author": "Denis Sitnikov",
"license": "ISC",
"dependencies": {
"@playwright/test": "^1.19.1",
"prettier": "^2.5.1"
}
}