login/node_modules/collect-v8-coverage
Balaga Gayatri 8ab7113acc changes
2021-10-25 18:21:32 +05:30
..
CHANGELOG.md changes 2021-10-25 18:21:32 +05:30
index.d.ts changes 2021-10-25 18:21:32 +05:30
index.js changes 2021-10-25 18:21:32 +05:30
LICENSE changes 2021-10-25 18:21:32 +05:30
package.json changes 2021-10-25 18:21:32 +05:30
README.md changes 2021-10-25 18:21:32 +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();