-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
29 lines (29 loc) · 1.35 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
{
"name": "e2e-testing",
"version": "0.1.0",
"description": "End-to-End Testing with Nightwatch and Cucumber",
"devDependencies": {},
"scripts": {
"selenium-install": "node_modules/.bin/selenium-standalone install",
"selenium": "node_modules/.bin/selenium-standalone start",
"nightwatch-chrome": "node_modules/.bin/nightwatch -c ./nightwatch.conf.js -e chrome",
"nightwatch-firefox": "node_modules/.bin/nightwatch -c ./nightwatch.conf.js -e firefox",
"nightwatch-chrome-firefox": "node_modules/.bin/nightwatch -c ./nightwatch.conf.js -e chrome,firefox",
"cucumber-chrome": "node_modules/.bin/cucumber-js -p chrome",
"cucumber-firefox": "node_modules/.bin/cucumber-js -p firefox",
"nightwatch-cucumber-chrome": "node_modules/.bin/nightwatch -c ./nightwatch-cucumber.conf.js -e chrome",
"nightwatch-cucumber-firefox": "node_modules/.bin/nightwatch -c ./nightwatch-cucumber.conf.js -e firefox",
"nightwatch-cucumber-chrome-firefox": "node_modules/.bin/nightwatch -c ./nightwatch-cucumber.conf.js -e chrome,firefox"
},
"dependencies": {
"chromedriver": "^2.29.0",
"cucumber": "^2.1.0",
"cucumber-html-reporter": "^0.4.2",
"geckodriver": "^1.6.1",
"minimist": "^1.2.0",
"nightwatch": "^0.9.15",
"nightwatch-cucumber": "^7.1.6",
"selenium-standalone": "^6.4.1",
"selenium-webdriver": "^3.4.0"
}
}