istanbul-coveralls
v1.0.3
Published
A simple alias for istanbul + coveralls
Downloads
14,899
Maintainers
Readme
istanbul-coveralls
A simple alias for istanbul + node-coveralls
istanbul cover test.js && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage
↓
istanbul cover test.js && istanbul-coveralls
Installation
npm install --save-dev istanbul istanbul-coveralls
Usage
- Write a coverage information file under
./coverage
by usingistanbul cover
command or the API of istanbul. - Run
istanbul-coveralls
command. See the docs of node-coveralls for more information about its usage.
Option
--no-rm
By default, it removes ./coverage
after coverage reporting. If --no-rm
flag is enabled, it doesn't remove the directory.
istanbul cover test.js && istanbul-coveralls --no-rm
Example
Mocha
istanbul cover ./node_modules/.bin/_mocha && ./node_modules/.bin/istanbul-coveralls
If you run the test as a npm script, you can omit directory names from the command.
istanbul cover _mocha && istanbul-coveralls
License
Copyright (c) 2014 - 2015 Shinnosuke Watanabe
Licensed under the MIT LIcense.