yuitest-coverage
Version:
Node.js wrapper for yuitest-coverage java package
28 lines (18 loc) • 600 B
Markdown
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
-------
```javascript
var coverage = require('yuitest-coverage');
coverage.cover('<file string to cover>', {
charset: 'utf8',
name: 'A name for the file in the output'
},
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('</path/to/file>', callback); // also works
```