jdcataldo / grunt-mocha-phantomjs

A simple grunt wrapper for mocha-phantomjs to allow for ci integration
MIT License
70 stars 40 forks source link

Version of phantom installed #47

Closed ekkis closed 8 years ago

ekkis commented 8 years ago

it seems that this module installs phantomjs. my question today is: how can I change the version of phantomjs that gets installed? at present it's 1.9.8 but that version is broken. see: https://github.com/ariya/phantomjs/issues/12697

so I'd like to downgrade to 1.9.7 but having done:

# npm uninstall phantomjs
# npm install phantomjs@1.9.7-15 --save-dev

in my project I still get 1.9.8 to run during tests because the version under grunt-mocha-hpantomjs didn't change. so how can I change it?

jdcataldo commented 8 years ago

Just pushed a new version with a known range of working phantomjs versions. Try grabbing the latest.

ekkis commented 8 years ago

that fixed it. 1,000 thanks!