forked from raptatinha/tau-introduction-to-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.03 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
{
"name": "tau-introduction-to-playwright",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:e2e": "npx playwright test tests/",
"test:e2e:all": "npx playwright test tests --project=all-browsers-and-tests",
"test:e2e:ci": "CI=1 npx playwright test --project=ci --shard=$CI_NODE_INDEX/$CI_NODE_TOTAL",
"test:e2e:dev": "npx playwright test tests-examples/ --project=chromium --headed --retries=0 --reporter=line",
"test:e2e:smoke": "npx playwright test tests-examples/ --grep @smoke --project=chromium",
"test:e2e:non-smoke": "npx playwright test tests-examples/ --grep-invert @smoke --project=firefox",
"test:visual:acme": "npx playwright test example-applitools.spec.ts --project=chromium",
"test:visual:playwright": "npx playwright test example3.spec.ts --project=all-browsers-and-tests"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@applitools/eyes-playwright": "^1.17.0",
"@playwright/test": "^1.34.2",
"dotenv": "^16.0.3"
}
}