-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 966 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
27
{
"name": "playwright-javascript",
"version": "1.0.0",
"description": "This is Test Automation framework designed using Playwright, and JavaScript",
"main": "index.js",
"scripts": {
"clean": "rimraf allure-results/ && rimraf allure-report/",
"test": "playwright test",
"headedTest": "playwright test --headed",
"e2e": "npm run clean && playwright test -c e2e.config.js --reporter=line,./my-awesome-reporter.js,allure-playwright",
"allure-report": "npx allure generate ./allure-results && allure open",
"prettierCI": "npx prettier --check ./e2e-tests",
"prettierWrite": "npx prettier --write ./e2e-tests"
},
"keywords": [],
"author": "",
"devDependencies": {
"@playwright/test": "^1.25.0",
"allure-commandline": "^2.18.1",
"allure-playwright": "^2.0.0-beta.18",
"npm-check-updates": "^15.0.2",
"playwright": "^1.25.0",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"saucectl": "^0.101.0"
}
}