forked from tnicola/cypress-parallel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.7 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
{
"name": "cypress-parallel-demo",
"version": "1.0.0",
"description": "cypress-parallel Demo Project",
"main": "index.js",
"scripts": {
"start": "npm start --prefix demo-app",
"cy:open": "cypress open",
"cy:run": "cypress run --browser chrome --headless",
"cy:parallel": "node_modules/.bin/cypress-parallel -s cy:run -t 4 -d 'cypress/integration/1/*.js'",
"cy:parallel:many": "node_modules/.bin/cypress-parallel -s cy:run -t 8 -d 'cypress/integration/**/*.js'",
"cy:parallel:spec": "node_modules/.bin/cypress-parallel -s cy:run -t 2 -d cypress/integration/1 -r spec",
"cy:parallel:junit": "node_modules/.bin/cypress-parallel -s cy:run -t 2 -d cypress/integration/1 -r mocha-junit-reporter -o 'mochaFile=demo-app/reporting/junit/e2e-junit-[hash].xml'",
"serve-and-test:run": "start-server-and-test start http://localhost:3000 cy:run",
"serve-and-test:parallel": "start-server-and-test start http://localhost:3000 cy:parallel",
"serve-and-test:parallel:spec": "start-server-and-test start http://localhost:3000 cy:parallel:spec",
"serve-and-test:parallel:junit": "start-server-and-test start http://localhost:3000 cy:parallel:junit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tnicola/cypress-parallel.git"
},
"author": "tnicola",
"license": "MIT",
"bugs": {
"url": "https://github.com/tnicola/cypress-parallel/issues"
},
"homepage": "https://github.com/tnicola/cypress-parallel#readme",
"dependencies": {
"cypress": "^9.1.0",
"cypress-multi-reporters": "^1.5.0",
"cypress-parallel": "file:lib",
"fs-extra": "^10.0.0",
"is-npm": "5.0.0",
"mocha-junit-reporter": "^2.0.0",
"start-server-and-test": "^1.12.5"
}
}