-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 912 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
28
{
"name": "playwright-cucumber-jm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean:reports": "rimraf test-results && mkdirp test-results",
"generate:report": "node src/helper/reportGenerate.js",
"pretest": "npm run clean:reports",
"posttest": "npm run generate:report",
"execute:script": "cucumber-js test",
"test": "npm run execute:script || npm run posttest",
"execute:script:failed": "cucumber-js -p rerun @rerun.txt",
"test:failed":"npm run execute:script:failed || npm run generate:report",
"setup-pw":"npm install && npx playwright install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^10.2.1",
"@playwright/test": "^1.40.1",
"@types/node": "^20.11.0",
"mkdirp": "^3.0.1",
"multiple-cucumber-html-reporter": "^3.6.0",
"rimraf": "^5.0.5"
}
}