-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·29 lines (29 loc) · 967 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
29
{
"name": "cypress-playgroung",
"version": "1.0.0",
"description": "A place with cypress installed, defaults only",
"main": "index.js",
"scripts": {
"open": "cypress open",
"test": "npx cypress run",
"spec": "cypress run --spec",
"clean-reports": "npx rimraf cypress/reports/\"**\"",
"posttest": "npm run mocha-merge && npm run mocha-marge",
"mocha-merge": "npx mochawesome-merge 'cypress/reports/testCaseResults/*json' > cypress/reports/mochawesomeMerged.json",
"mocha-marge": "npx marge cypress/reports/mochawesomeMerged.json -f report -o cypress/reports/html"
},
"author": "",
"license": "ISC",
"devDependencies": {
"cypress": "^8.6.0",
"cypress-multi-reporters": "^1.5.0",
"mocha": "^9.1.3",
"mochawesome": "^6.3.1",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.2.0",
"wait": "^0.4.2",
"async": "^3.2.1",
"cymetrics": "^1.0.3",
"lodash": "^4.17.21"
}
}