-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.9.0 stops working with phantomjs setup #1005
Comments
is it possible to try without gulp? |
@beatfactor From command line works without any problem.
|
Looks like I found difference. From command line run we have this { _: [],
config: './nightwatch.json',
c: './nightwatch.json',
output: 'tests_output',
o: 'tests_output',
reporter: 'junit',
r: 'junit',
env: 'default',
e: 'default',
filter: '',
f: '',
tag: '',
a: '',
'$0': '/Users/leo/.nvm/versions/node/v4.4.3/bin/node ./node_modules/.bin/nightwatch' } Inside gulp: { _: [ 'nightwatch' ],
config: './nightwatch.json',
c: './nightwatch.json',
output: 'tests_output',
o: 'tests_output',
reporter: 'junit',
r: 'junit',
env: 'default',
e: 'default',
filter: '',
f: '',
tag: '',
a: '',
'$0': '/usr/local/bin/gulp' } As I understand inside gulp in some case changed |
hmm yeah. thanks for looking into this. I will try to post a fix soon. |
Thanks. I just add this to code and it start working.
But will wait for your fix, because it is very dirty changes. |
@beatfactor confirmed. Thanks! |
Hello. I trying to read changelog between 0.8.18 and 0.9.0 and trying to understand, what changes influence on working environment. What I have:
phantomjs 2.1.1
nightwatch 0.8.18
nightwatch.json
and gulp task:
And this work without any problem. If I trying to update to nightwatch 0.9.0 - I get, what after
nightwatch.runner
I get zero output and don't see any runing process, except phantomjs and node server, which I run before this call.What configuration is missed for 0.9.0 version?
The text was updated successfully, but these errors were encountered: