JSPM

yuitest-coverage

0.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 27933
  • Score
    100M100P100Q191024F

Node.js wrapper for yuitest-coverage java package

Package Exports

  • yuitest-coverage

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (yuitest-coverage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

YUI Test Coverage Node.js Module

This module is a wrapper around the YUITest Coverage Java module that you can call from a Node.js process.

Example

var coverage = require('yuitest-coverage');

coverage.cover('/path/to/file', function(err, data) {
    //err will be populated with the stderr from the java process
    //data will be a string of the covered contents, you write the file out
});

coverage.cover('<string from a file>', callback); // also works