-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.19 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
33
{
"name": "cypress_report_generator",
"version": "1.0.0",
"private": true,
"scripts": {
"debug": "cypress open",
"report": "run-s -c report:*",
"report:clean": "Rmdir /Q /S tests\\e2e\\results\\",
"report:cyrun": "cypress run",
"report:merge": "mochawesome-merge tests/e2e/results/json/*.json > tests/e2e/results/mochawesome-bundle.json",
"report:generate": "marge tests/e2e/results/mochawesome-bundle.json -o tests/e2e/results/html_report -f Test_Report.html",
"report:copyScreenshots": "Xcopy tests\\e2e\\screenshots tests\\e2e\\results\\html_report\\screenshots /E /H /C /I /Y",
"report:open": "Start %cd%\\tests\\e2e\\results\\html_report\\Test_Report.html"
},
"devDependencies": {
"@cucumber/cucumber": "^7.0.0",
"cypress": "^6.2.1",
"cypress-cucumber-preprocessor": "^4.0.0",
"cypress-multi-reporters": "^1.4.0",
"mocha": "~7",
"mochawesome": "^6.2.1",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.1.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"debug": "^4.3.1"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"stepDefinitions": "tests/e2e/integration"
}
}