node-cover icon indicating copy to clipboard operation
node-cover copied to clipboard

Native JavaScript Code Coverage

Results 24 node-cover issues
Sort by recently updated
recently updated
newest added

Is this project being maintained? If not, do you mind adding a note on the README (possibly with suggestions of replacements) and then run `npm deprecate`. Thanks

Bumps [underscore.string](https://github.com/epeli/underscore.string) from 2.0.0 to 3.3.5. Release notes *Sourced from [underscore.string's releases](https://github.com/epeli/underscore.string/releases).* > ## 3.2.1 > No release notes provided. > > ## 3.2.0 > https://github.com/epeli/underscore.string/blob/master/CHANGELOG.markdown#320 > > ## 3.1.1...

dependencies

``` ┌───────────────┬──────────────────────────────────────────────────────────────┐ │ Moderate │ Regular Expression Denial of Service │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Package │ underscore.string │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Patched in │ >=3.3.5 │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Dependency of │ cover...

I need to run something like: ``` cover run --harmony test/runner.js ```

See line 90 on node-cover/templates/index.html https://github.com/itay/node-cover/blob/master/templates/index.html#L90 ```

path.js:313 throw new TypeError('Arguments to path.resolve must be strings'); ^ TypeError: Arguments to path.resolve must be strings at Object.exports.resolve (path.js:313:15) at Object.exports.relative (path.js:371:18) at Object.module.exports.format (/home/jsjagoda/Documents/node-cover/reporters/cli.js:8:25) at reporterHandlers.cli (/home/jsjagoda/Documents/node-cover/bin/cover:530:44) at...

Am wondering how difficult it would be to produce a coverage reports using Cobertura's xml format? Here is their XML report generating class: http://www.devdaily.com/java/jwarehouse/cobertura-1.9/src/net/sourceforge/cobertura/reporting/xml/XMLReport.java.shtml

Hi! I am migrationBot! Did you know that `path.{exists,existsSync}` was moved to `fs.{exists,existsSync}`, and that `tty.setRawMode(mode)` was moved to `tty.ReadStream#setRawMode()` (i.e. `process.stdin.setRawMode()`) in node v0.8.0? Read more @[API changes between...

I have been following the style of using multiple independent test files in test dir : `tap ./test/*.js` . Assuming that this style is common it would be nice to...

Is there a good example (or even possible) to use cover as a library? The thinking would be to instrument it into a test suite (like mocha) so that the...