-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.61 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "harvester",
"description": "Harvester e2e test",
"repository": "https://github.com/harvester/tests",
"license": "Apache-2.0",
"author": "SUSE",
"private": true,
"devDependencies": {
"@cypress/skip-test": "^2.6.1",
"@cypress/vue": "^2.2.3",
"@types/adm-zip": "^0.4.34",
"@types/cookie": "^0.5.1",
"@types/cypress": "^1.1.3",
"@types/js-yaml": "^4.0.5",
"cy-verify-downloads": "^0.1.8",
"cypress-dotenv": "^2.0.0",
"dotenv": "^16.0.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^6.2.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"dependencies": {
"adm-zip": "0.5.9",
"cookie": "^0.4.2",
"cookie-parser": "^1.4.6",
"cypress": "10.8",
"js-yaml": "^4.1.0",
"js-yaml-js-types": "^1.0.0",
"node-ssh": "^13.0.0",
"yaml": "^2.3.1"
},
"engines": {
"node": "^12.22 || ^14.13 || >=16"
},
"scripts": {
"delete:reports": "rm cypress/results/* || true",
"prereport": "npm run delete:reports",
"report": "node scripts/run.js",
"open": "./node_modules/.bin/cypress open",
"e2e": "./node_modules/.bin/cypress run --browser electron --reporter mochawesome",
"report:merge": "rm -rf cypress/results/merge && mkdir -p cypress/results/merge && ./node_modules/.bin/mochawesome-merge 'cypress/results/*.json' > cypress/results/merge/mochawesome.json && ./node_modules/.bin/marge cypress/results/merge/mochawesome.json -o cypress/results/mochawesome-report",
"report:html": "yarn report:merge && open cypress/results/mochawesome-report/mochawesome.html"
}
}