Closed forresto closed 9 years ago
Travis has 1.9.18 by default.
1.9.18
npm install mocha-phantomjs --save-dev adds "phantomjs": "^1.9.7-15". I had to change that to "phantomjs": "1.9.7-15" to get the test to run on Travis.
npm install mocha-phantomjs --save-dev
"phantomjs": "^1.9.7-15"
"phantomjs": "1.9.7-15"
broken
npm ERR! peerinvalid The package phantomjs does not satisfy its siblings' peerDependencies requirements! npm ERR! peerinvalid Peer mocha-phantomjs@3.6.0 wants phantomjs@1.9.1 - 1.9.7-15
fixed
Travis has
1.9.18
by default.npm install mocha-phantomjs --save-dev
adds"phantomjs": "^1.9.7-15"
. I had to change that to"phantomjs": "1.9.7-15"
to get the test to run on Travis.broken
fixed