istanbul-gh-pr-uncovered
v1.0.0-beta.2
Published
Get
Downloads
2
Maintainers
Readme
istanbul-gh-pr-uncovered
Uses the istanbul coverageMap and get's the uncovered lines from the current pull request related to the last commit that this process it running on.
Installation
npm install istanbul-gh-pr-uncovered --save
Usage
const fetchUncoveredPrFiles = require('istanbul-gh-pr-uncovered');
const uncoveredFiles = await fetchUncoveredPrFiles({
coverageMap: jestTestResults.coverageMap,
// appId of the installed app, in order to fetch github PR info
appId,
// the private key generated for the installed app
privateKey
});
console.log(uncoveredFiles);