istanbul-cobertura-badger icon indicating copy to clipboard operation
istanbul-cobertura-badger copied to clipboard

Create a Code Coverage badge for Node.js Apps running node-istanbul.

Results 8 istanbul-cobertura-badger issues
Sort by recently updated
recently updated
newest added

This fix allow to handle different xml structures In my case, the cobertura-coverage.xml had a different structure that made the lib crash: ``` /Users/xxx/xxx/app ... ``` Using "istanbul": "v1.1.0-alpha.1" "remap-istanbul":...

Fix typo: `--excellentThreashold` -> `--excellentThreshold` Fix type: `--goodThreashold` -> `--goodThreshold`

when run istanbul-cobertura-badger this output :- { overallPercent: 49, functionRate: 0.5229759299781181, lineRate: 0.5820000000000001, branchRate: 0.381, url: 'https://img.shields.io/badge/coverage-49%-red.svg?style=flat', badgeFile: { downloaded: true, filePath: '/coverage/undefined.svg', size: 177 }, color: 'red' } Badge...

It would be helpful to have an option to set the text on the left side of the badge shield to something other than coverage. This would be useful for...

When the code doesn't contain any methods, the generated coverage report won't calculate the coverage for methods. However, the `functionRate` is still being calculated and returning a `NaN`. Thus causing...

Hi, Thank you for this generator. It would be nice to be able to set what kind of calculation we want no? Today you have your own formula for coverage...