github-pages-deploy-action/node_modules/collect-v8-coverage
2020-01-27 23:58:23 -05:00
..
CHANGELOG.md Test... 2020-01-27 23:58:23 -05:00
index.d.ts Test... 2020-01-27 23:58:23 -05:00
index.js Test... 2020-01-27 23:58:23 -05:00
LICENSE Test... 2020-01-27 23:58:23 -05:00
package.json Test... 2020-01-27 23:58:23 -05:00
README.md Test... 2020-01-27 23:58:23 -05: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();