nodeunit-browser-tap

0.1.0 • Public • Published

nodeunit-browser-tap

Nodeunit browser-side TAP reporter for use with Testling CI.

browser support

dependencies

Like Nodeunit's baked-in TAP reporter, but meant to run in the browser following Testling's convention of writing test results to console.log.

Usage

npm install nodeunit-browser-tap

Write your test.js

var nodeunit = require('nodeunit-browser-tap');

nodeunit.run([{
  "Ceci nes't pas une test": function(test) {
    test.notStrictEqual(this, 'une test');
    test.done();
  }
}]);

And run it. Browserify and Testling make this easy

browserify test.js | testling

Self Hosted Tests

npm install && npm test

Package Sidebar

Install

npm i nodeunit-browser-tap

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • hurrymaplelad