0.1.1 • Published 10 years ago
tap-diff v0.1.1
tap-diff
The most human-friendly TAP reporter.


How to use
You can use tap-notify in the same way as other TAP reporters.
npm install -g tap-difftape ./*.test.js | tap-diffOr use with createStream():
var test = require('tape');
var tapDiff = require('tapDiff');
test.createStream()
.pipe(tapDiff());
process.argv.slice(2).forEach(function (file) {
require(path.resolve(file));
});License
MIT