0.1.0 • Published 10 years ago

nodeunit-browser-tap v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

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
0.1.0

10 years ago

0.0.4

10 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago