-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from jakemmarsh/protractor-server-port
run protractor tests on separate port
- Loading branch information
Showing
4 changed files
with
5 additions
and
4 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
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,6 +1,6 @@ | ||
{ | ||
"name": "angularjs-gulp-browserify-boilerplate", | ||
"version": "1.5.3", | ||
"version": "1.5.4", | ||
"author": "Jake Marsh <[email protected]>", | ||
"description": "Boilerplate using AngularJS, SASS, Gulp, and Browserify while also utilizing best practices.", | ||
"repository": { | ||
|
@@ -79,7 +79,7 @@ | |
}, | ||
"scripts": { | ||
"test": "./node_modules/.bin/gulp test", | ||
"webdriver-update": "./node_modules/.bin/webdriver-manager update", | ||
"webdriver-update": "./node_modules/gulp-protractor/node_modules/protractor/bin/webdriver-manager update", | ||
"postinstall": "npm run webdriver-update" | ||
}, | ||
"license": "MIT" | ||
|
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
f88e6c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if it's something on my end, but after this update, it no longer runs the webdriver-manager update.
I had to switch back to
"webdriver-update": "./node_modules/.bin/webdriver-manager update",
81 info lifecycle [email protected]
postinstall: [email protected]postinstall: unsafe-perm in lifecycle true82 verbose lifecycle [email protected]
83 verbose lifecycle [email protected]
postinstall: PATH:...postinstall: CWD: C:\devel\test3\angularjs-gulp-browserify-boilerplate-master84 verbose lifecycle [email protected]
85 silly lifecycle [email protected]
postinstall: Args: [ '/d /s /c', 'npm run webdriver-update' ]postinstall: Returned: code: 1 signal: null86 silly lifecycle [email protected]
87 info lifecycle [email protected]~postinstall: Failed to exec postinstall script
88 verbose stack RangeError: Maximum call stack size exceeded
88 verbose stack at Array.filter (native)
88 verbose stack at C:\Program Files\nodejs\node_modules\npm\lib\install\actions.js:55:37
88 verbose stack at Array.forEach (native)
88 verbose stack at markAsFailed (C:\Program Files\nodejs\node_modules\npm\lib\install\actions.js:54:16)
88 verbose stack at C:\Program Files\nodejs\node_modules\npm\lib\install\actions.js:57:7
88 verbose stack at Array.forEach (native)
88 verbose stack at markAsFailed (C:\Program Files\nodejs\node_modules\npm\lib\install\actions.js:54:16)
88 verbose stack at C:\Program Files\nodejs\node_modules\npm\lib\install\actions.js:57:7
88 verbose stack at Array.forEach (native)
88 verbose stack at markAsFailed (C:\Program Files\nodejs\node_modules\npm\lib\install\actions.js:54:16)
f88e6c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's strange... just did a fresh clone and
npm install
and did not run into this issue. For now we'll see if any other users mention this issuef88e6c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've tried upgrading to npm 3.8.0 from 3.6.0, and pulled a fresh copy, but the issue is still the same. I have Nodejs 5.7.1. It must be something to do with the environment.
At least I have the fix for now :)