Setup database and run program
$ cd working-dir/src
$ redis-server
$ node index.js
Start test suite
$ cd working-dir
$ mocha
Create coverage report
$ cd working-dir
$ mocha --reporter html-cov > coverage.html
Install dependencies
$ cd working-dir
$ npm install