ghaction-upx/node_modules/collect-v8-coverage
2020-01-23 08:49:02 +00:00
..
CHANGELOG.md Update node_modules 2020-01-23 08:49:02 +00:00
index.d.ts Update node_modules 2020-01-23 08:49:02 +00:00
index.js Update node_modules 2020-01-23 08:49:02 +00:00
LICENSE Update node_modules 2020-01-23 08:49:02 +00:00
package.json Update node_modules 2020-01-23 08:49:02 +00:00
README.md Update node_modules 2020-01-23 08:49:02 +00: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();