markitect-main/node_modules/collect-v8-coverage
tegwick d0abaab63a chore: update project state and prepare for image support development
- Add comprehensive image test document with various image types
- Update project structure with development artifacts
- Prepare foundation for image support enhancement phase
- Include test files for validating image editing workflows

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 08:06:22 +01:00
..
CHANGELOG.md chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
index.d.ts chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
index.js chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
LICENSE chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
package.json chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
README.md chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01: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();