Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 377B

123456789101112131415
  1. # collect-v8-coverage
  2. Use this module to start and stop the V8 inspector manually and collect precise coverage.
  3. ```js
  4. const {CoverageInstrumenter} = require('collect-v8-coverage');
  5. const instrumenter = new CoverageInstrumenter();
  6. await instrumenter.startInstrumenting();
  7. // require some modules, run some code
  8. const coverage = await instrumenter.stopInstrumenting();
  9. ```