login/node_modules/collect-v8-coverage
2020-10-12 14:50:25 +05:30
..
CHANGELOG.md updating node_nodules 2020-10-12 14:50:25 +05:30
index.d.ts updating node_nodules 2020-10-12 14:50:25 +05:30
index.js updating node_nodules 2020-10-12 14:50:25 +05:30
LICENSE updating node_nodules 2020-10-12 14:50:25 +05:30
package.json updating node_nodules 2020-10-12 14:50:25 +05:30
README.md updating node_nodules 2020-10-12 14:50:25 +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();