forked from tnicola/cypress-parallel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1 KB
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
{
"name": "cypress-parallel-demo",
"version": "1.0.0",
"description": "cypress-parallel Demo Project",
"main": "index.js",
"scripts": {
"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",
"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 junit -o 'mochaFile=demo-app/reporting/junit/e2e-junit-[hash].xml'"
},
"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": "^4.6.0",
"cypress-parallel": "file:lib",
"is-npm": "5.0.0"
}
}