Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (19 loc) · 744 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 744 Bytes

istanbul-gh-pr-uncovered

Build Status

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);