Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

tap-diff

axross25.2kMIT0.1.1

The most human-friendly TAP reporter

tap, tape, ava, test, reporter, diff

readme

tap-diff

npm version

The most human-friendly TAP reporter.

Screenshot

Screenshot

How to use

You can use tap-notify in the same way as other TAP reporters.

npm install -g tap-diff
tape ./*.test.js | tap-diff

Or 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