All Projects â†’ axross â†’ Tap Notify

axross / Tap Notify

Licence: mit
🔔 the Notifier for OS X, Linux and Windows as TAP reporter

Programming Languages

javascript
184084 projects - #8 most used programming language

tap-notify

npm version

the Notifier for OS X, Linux and Windows as TAP reporter

Screenshot

Screenshot

How to Use

You can use tap-notify in the same way as other TAP reporters. I recommend to use as the first pipe.

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

Or use with createStream():

var test = require('tape');
var tapDiff = require('tap-diff');
var tapNotify = require('tap-notify');

test.createStream()
  .pipe(tapNotify())
  .pipe(tapDiff());

process.argv.slice(2).forEach(function (file) {
  require(path.resolve(file));
});

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].