-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.58 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.58 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
29
30
31
32
33
34
{
"name": "BreedingInsight",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pretest:debug": "cucumber-js --require cucumber.conf.js --tags @debug --require src/step_definitions src/features --format json:report/cucumber_report.json || true",
"test:debug": "npm run report",
"pretest:chromeDaily": "cucumber-js --require cucumber.conf.js --tags @SmokeTests --require src/step_definitions src/features --format json:report/cucumber_report.json || true",
"test:chromeDaily": "npm run report",
"pretest:chromeWeekly": "cucumber-js --require cucumber.conf.js --require src/step_definitions src/features --format json:report/cucumber_report.json || true",
"test:chromeWeekly": "npm run report",
"pretest:e2e": "cucumber-js --require cucumber.conf.js --require src/step_definitions src/features --format json:report/cucumber_report.json || true",
"test:e2e": "npm run report",
"pretest:e2e:debug": "node --inspect-brk ./node_modules/.bin/cucumber-js --require cucumber.conf.js --require src/step_definitions src/features --format json:report/cucumber_report.json || true",
"test:e2e:debug": "npm run report",
"report": "node reporter.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^11.2.0",
"@cucumber/pretty-formatter": "*",
"@slime/stopwatch": "^1.0.5",
"chromedriver": "^139.0.0",
"cucumber-html-reporter": "^7.2.0",
"edgedriver": "^5.6.0",
"geckodriver": "^4.4.1",
"iedriver": "^3.4.0",
"mkdirp": "^1.0.4",
"nightwatch": "^3.12.0"
}
}