-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.27 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.27 KB
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
{
"name": "outis_playwright",
"version": "1.0.0",
"description": "Automated software testing with Playwright",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:chrome": "playwright test --config=playwright.config.ts --project=chromium",
"test:firefox": "playwright test --config=playwright.config.ts --project=firefox",
"test:webkit": "playwright test --config=playwright.config.ts --project=webkit",
"tests:visual:chrome": "playwright test --config=visual.config.ts --project=chromium",
"tests:visual:firefox": "playwright test --config=visual.config.ts --project=firefox",
"tests:visual:webkit": "playwright test --config=visual.config.ts --project=webkit",
"tests:visual:chrome:update": "playwright test --config=visual.config.ts --project=chromium --update-snapshots",
"tests:visual:firefox:update": "playwright test --config=visual.config.ts --project=firefox --update-snapshots",
"tests:visual:webkit:update": "playwright test --config=visual.config.ts --project=webkit --update-snapshots",
"tests:api" : "playwright test --config=api.config.ts --project=chromium"
},
"author": "Thomas",
"license": "ISC",
"dependencies": {
"@playwright/test": "^1.50.0",
"prettier": "^3.4.2"
}
}