-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
32 lines (32 loc) · 1.52 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
25
26
27
28
29
30
31
32
{
"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-report/ && rimraf playwright-report/",
"test": "playwright test",
"headedTest": "playwright test --headed",
"single-test-file": "npm run clean && playwright test cart.spec.js --reporter=line",
"test-list-reporter": "npm run clean && playwright test cart.spec.js --reporter=list",
"test-line-reporter": "npm run clean && playwright test cart.spec.js --reporter=line",
"test-dot-reporter": "npm run clean && playwright test cart.spec.js --reporter=dot",
"test-html-reporter": "npm run clean && playwright test cart.spec.js --reporter=html",
"test-json-reporter": "npm run clean && playwright test cart.spec.js --reporter=json",
"test-junit-reporter": "npm run clean && playwright test cart.spec.js --reporter=junit",
"e2e": "npm run clean && playwright test -c e2e.config.js",
"e2e-commandline-reporter": "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"
},
"keywords": [],
"author": "Code with MMAK",
"devDependencies": {
"@playwright/test": "^1.32.1",
"allure-commandline": "^2.21.0",
"allure-playwright": "^2.1.0",
"copyfiles": "^2.4.1",
"npm-check-updates": "^16.9.0",
"rimraf": "^5.0.0",
"saucectl": "^0.147.0"
}
}