github-pages-deploy-action/node_modules/collect-v8-coverage
2020-03-31 08:42:07 -04:00
..
CHANGELOG.md 3.4.3 2020-03-31 08:42:07 -04:00
index.d.ts 3.4.3 2020-03-31 08:42:07 -04:00
index.js 3.4.3 2020-03-31 08:42:07 -04:00
LICENSE 3.4.3 2020-03-31 08:42:07 -04:00
package.json 3.4.3 2020-03-31 08:42:07 -04:00
README.md 3.4.3 2020-03-31 08:42:07 -04:00

collect-v8-coverage

Use this module to start and stop the V8 inspector manually and collect precise coverage.

const {CoverageInstrumenter} = require('collect-v8-coverage');

const instrumenter = new CoverageInstrumenter();

await instrumenter.startInstrumenting();

// require some modules, run some code

const coverage = await instrumenter.stopInstrumenting();