Merge pull request #172 from ryanxcharles/feature/code-coverage-update

update README to explain tests and code coverage report
This commit is contained in:
Ryan X. Charles 2014-03-19 07:59:39 -07:00
commit 1d36545cc3
1 changed files with 24 additions and 0 deletions

View File

@ -296,6 +296,30 @@ This will generate a `browser/bundle.js` containing only the Transaction
Use this option if you are not using the whole bitcore library, to optimize
the bundle size, script loading time, and general resource usage.
## Tests
Run tests in node:
```
mocha
```
Or generate tests in the browser:
```
grunt shell
```
And then open test/index.html in your browser.
To run the code coverage report:
```
npm run-script coverage
```
And then open coverage/lcov-report/index.html in your browser.
#License