-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
39 lines (39 loc) · 1.88 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
{
"name": "cypress-parallel-demo",
"version": "1.0.0",
"description": "cypress-parallel Demo Project",
"main": "index.js",
"scripts": {
"start": "npm start --prefix pizza-demo",
"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/e2e/1/*.js'",
"cy:parallel:some": "node_modules/.bin/cypress-parallel -s cy:run -t 2 --spec cypress/e2e/1/new-pizza.spec.js cypress/e2e/2/pizza.cy.js",
"cy:parallel:many": "node_modules/.bin/cypress-parallel -s cy:run -t 8 -d 'cypress/e2e/**/*.js'",
"cy:parallel:spec": "node_modules/.bin/cypress-parallel -s cy:run -t 2 -d cypress/e2e/1 -r spec",
"cy:parallel:junit": "node_modules/.bin/cypress-parallel -s cy:run -t 2 -d cypress/e2e/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:some": "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": "^13.6.0",
"cypress-multi-reporters": "^1.5.0",
"cypress-parallel": "file:lib",
"is-npm": "5.0.0",
"mocha-junit-reporter": "^2.0.0",
"start-server-and-test": "^2.0.3"
}
}