login/node_modules/collect-v8-coverage
2020-04-28 12:41:56 +05:30
..
CHANGELOG.md adding node modules (#22) 2020-04-28 12:41:56 +05:30
index.d.ts adding node modules (#22) 2020-04-28 12:41:56 +05:30
index.js adding node modules (#22) 2020-04-28 12:41:56 +05:30
LICENSE adding node modules (#22) 2020-04-28 12:41:56 +05:30
package.json adding node modules (#22) 2020-04-28 12:41:56 +05:30
README.md adding node modules (#22) 2020-04-28 12:41:56 +05:30

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