--
You received this message because you are subscribed to the Google Groups "testacular" group.
To view this discussion on the web visit https://groups.google.com/d/msg/testacular/-/PB7poGmZ_KIJ.
To post to this group, send email to testa...@googlegroups.com.
To unsubscribe from this group, send email to testacular+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/testacular?hl=en.
npm install testacular -g
npm install phantomjs
npm install jscoverage
To view this discussion on the web visit https://groups.google.com/d/msg/testacular/-/SJc0gFFdrZ4J.
To view this discussion on the web visit https://groups.google.com/d/msg/testacular/-/b-Og89gmxskJ.
To unsubscribe from this group and stop receiving emails from it, send an email to testacular+...@googlegroups.com.
Visit this group at http://groups.google.com/group/testacular?hl=en.For more options, visit https://groups.google.com/groups/opt_out.
This is happening for me when I install the latest PhantomJS (1.8.1) from NPM and use process.env['PHANTOMJS_BIN'] = 'node_modules/.bin/phantomjs'
Having the same issue with Ubuntu 12.04, node 0.8.7, PhantomJS 1.8.2 and just cloned the seed repo.Installed PhantomJS locally (not with -g) and set the bin path as you suggested. Seems to run the tests but then exit with a failure.PhantomJS 1.8 (Linux): Executed 5 of 5 SUCCESS (0.223 secs / 0.028 secs)ERROR [launcher]: Cannot start PhantomJS
--
You received this message because you are subscribed to the Google Groups "karma-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to karma-users...@googlegroups.com.
To post to this group, send email to karma...@googlegroups.com.
Visit this group at http://groups.google.com/group/karma-users?hl=en.
I came accross the same problem just after updating PhantomJS.
It seems they modified their runner to return with error code 1 when PahntomJS is simply killed.
See commit:
https://github.com/Obvious/phantomjs/commit/8921fb75c4f3ff2989c90c6b050831d2abf9d0db
My current solution is to modify process.exit(1) to process.exit(0) in the phantomJS runner.
But I think it should be corrected either in karma or phantomJS.
Olivier Samyn.