### Generating a test coverage report

Instructions for generating a test coverage report in your development environment.

#### 1) Install istanbul globally
`npm install istanbul -g`

#### 2) Execute istanbul 
`istanbul cover C:/nodejs/node_modules/mocha/bin/_mocha test/mocha`

This will execute the istanbul code coverage utility, using mocha.

**_NOTES:_**
 
 * You should adjust the path to the _mocha file as necessary for your local development environment. 
 * You should be using _mocha (see https://github.com/gotwarlost/istanbul/issues/44)
 * [Windows] users should make sure to pass the full path to the _mocha file (see https://github.com/gotwarlost/istanbul/issues/90)

####3)  This should result in an html coverage report being generated at:

`frontend/coverage/lcov-report/index.html`

