-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New nightwatch-cucumber version removed config options for cucumberAr…
…gs . Change config for this requirement and also update package
- Loading branch information
christine.zierold
committed
Mar 16, 2017
1 parent
138701e
commit f922bc9
Showing
2 changed files
with
57 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
{ | ||
"name": "nightwatch-Boilerplate", | ||
"description": "nightwatch boilerplate with selenium testing", | ||
"version": "0.1.0", | ||
"description": "nightwatch boilerplate for End-to-End test with either nightwatch plain oder nightwatch-cucumber", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"author": { | ||
"name": "Christine Zierold" | ||
}, | ||
"repository": { | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]/christinezierold27/nightwatch-boilerplate.git" | ||
}, | ||
"scripts": { | ||
"start": "cd tests/ && nightwatch ./src && cd ../", | ||
"start:cucumber": "cd features/ && nightwatch --group group && cd ../", | ||
"start:cucumber": "nightwatch --cucumber", | ||
"lint": "eslint ./tests --max-warnings 0" | ||
}, | ||
"dependencies": { | ||
|
@@ -21,14 +22,15 @@ | |
"nightwatch": "^0.9.5", | ||
"nightwatch-html-reporter": "^1.0.6", | ||
"phantomjs-prebuilt": "^2.1.7", | ||
"selenium-server": "^2.53.1" | ||
"selenium-server": "^3.3.1", | ||
"yargs": "^7.0.2" | ||
}, | ||
"devDependencies": { | ||
"chai": "^3.5.0", | ||
"cucumber": "^1.2.0", | ||
"cucumber": "^2.0.0-rc.8", | ||
"eslint": "^3.13.1", | ||
"mocha": "^2.5.3", | ||
"nightwatch-cucumber": "^4.0.0" | ||
"mocha": "^3.2.0", | ||
"nightwatch-cucumber": "^7.0.0" | ||
}, | ||
"bin": { | ||
"nightwatch": "./node_modules/nightwatch/bin/nightwatch" | ||
|