Hello,
When I run npm install after pulling your code, I got the following error:
"npm ERR! peerinvalid The package protractor does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer grunt-protractor-runner@0.1.3 wants protractor@~0.10.0"
What I changed is:
- Open package.json
- Update "protractor": "latest" to:
"protractor": "~0.10.0"
That did the trick. I guess latest was using something different that other dependencies don't work with.