First npm install itself fails because of old dependencies
NPM output:
npm ERR! peerinvalid The package karma does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer grunt-karma@0.8.3 wants karma@~0.12.0
npm ERR! peerinvalid Peer karma-coverage@0.2.6 wants karma@>=0.9
npm ERR! peerinvalid Peer karma-jasmine@0.1.5 wants karma@>=0.9
npm ERR! peerinvalid Peer karma-phantomjs-launcher@0.1.4 wants karma@>=0.9
npm ERR! peerinvalid Peer karma-script-launcher@0.1.0 wants karma@>=0.9
npm ERR! System Linux 3.16.0-45-generic
npm ERR! command "/home/svarghese/.nvm/v0.10.40/bin/node" "/home/svarghese/.nvm/v0.10.40/bin/npm" "install"
npm ERR! cwd /home/svarghese/workspace/ng-improved-testing-sample
npm ERR! node -v v0.10.40
npm ERR! npm -v 1.4.28
npm ERR! code EPEERINVALID
I fixed it by reinstalling the lastest versions of all of these devdepencies.
After than running grunt test showed all the unit tests for ngImprovedTesting failing. 😭
First
npm installitself fails because of old dependenciesNPM output:
I fixed it by reinstalling the lastest versions of all of these devdepencies.
After than running
grunt testshowed all the unit tests for ngImprovedTesting failing. 😭