Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

mocha-cov-reporter

clebert19deprecated1.1.3

THIS PROJECT IS NO LONGER MAINTAINED by clebert

A code coverage reporter for Mocha/Blanket.js.

code, coverage, reporter, mocha, blanket

readme

mocha-cov-reporter

A code coverage reporter for Mocha/Blanket.js.

license npm downloads

build code climate dependencies devDependencies

Getting Started

Installation

npm install mocha-cov-reporter --save-dev

Integration

Please add the following fields to your project's package.json file:

{
    "config": {
        "mocha-cov-reporter": {
            "failOnError": true,
            "threshold": 100,
            "useColors": true
        }
    }
}

Sample Output

Coverage succeeded: 100% >= 100% (SLOC 85)
Coverage below threshold: 75% < 100% (SLOC 85)

Running Tests

To run the test suite first install the development dependencies:

npm install

then run the tests:

npm test