Deployed with surge to: https://monkees.surge.sh
git clone https://github.com/danieldeiana/monkees.git
nvm use 5.0
nvm --version
cd
to the folder where package.json lies and enter npm install
.Nodemon is required to run the server locally
npm install -g nodemon
nodemon --version
Karma is required to run the tests
npm install -g karma-cli
karma --version
nodemon server.js
to run the serverkarma start
in the terminal to run the tests. (make sure the karma cli is installed, see above)
Test results will be shown in the terminal.Using a test driven approach and followed the same setup as Adam Morgan: Testing AngularJS with Jasmine and Karma