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 996B

1234567891011121314151617181920212223242526272829
  1. ## istanbul-lib-coverage
  2. [![Greenkeeper badge](https://badges.greenkeeper.io/istanbuljs/istanbul-lib-coverage.svg)](https://greenkeeper.io/)
  3. [![Build Status](https://travis-ci.org/istanbuljs/istanbul-lib-coverage.svg?branch=master)](https://travis-ci.org/istanbuljs/istanbul-lib-coverage)
  4. An API that provides a read-only view of coverage information with the ability
  5. to merge and summarize coverage info.
  6. Supersedes `object-utils` and `collector` from the v0 istanbul API.
  7. See the docs for the full API.
  8. ```js
  9. var libCoverage = require('istanbul-lib-coverage');
  10. var map = libCoverage.createCoverageMap(globalCoverageVar);
  11. var summary = libCoverage.createCoverageSummary();
  12. // merge another coverage map into the one we created
  13. map.merge(otherCoverageMap);
  14. // inspect and summarize all file coverage objects in the map
  15. map.files().forEach(function(f) {
  16. var fc = map.fileCoverageFor(f),
  17. s = fc.toSummary();
  18. summary.merge(s);
  19. });
  20. console.log('Global summary', summary);
  21. ```