-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1015 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
25
26
{
"name": "playwright-test-store",
"version": "0.0.1",
"main": "index.js",
"author": "Ramses Almeida <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@playwright/test": "^1.31.2",
"allure-commandline": "2.21.0",
"allure-playwright": "2.1.0",
"eslint": "8.36.0",
"eslint-plugin-playwright": "0.12.0",
"expect-playwright": "^0.8.0",
"playwright": "^1.31.2",
"wait-on": "^7.0.1"
},
"scripts": {
"allure:generate": "npx allure generate ./allure-results --clean -o allure-report",
"allure:history": "mv -f allure-report/history allure-results/history && rm -r allure-report || true",
"allure:open": "npx playwright show-report allure-report",
"test:e2e": "npx playwright test --project e2e --config playwright.config.js",
"test:e2e:headed": "npx playwright test --project e2e --config playwright.config.js --headed",
"test:e2e:ci": "npx test:e2e --workers 2"
}
}