colored-tape

v1.0.0
color result of tape
tap test harness assert browser

colored-tape

color result of tape

forked from substack/tape

Example

var test = require('colored-tape');

test('timing test', function (t) {
    t.plan(2);

    t.equal(typeof Date.now, 'function');
    var start = Date.now();

    setTimeout(function () {
        t.equal(Date.now() - start, 100);
    }, 100);
});

Installation

With npm do:

npm install colored-tape

license

MIT (same as substack/tape)

Metadata

  • MIT
  • Whatever
  • Unknown
  • released 5/6/2014

Downloads

Maintainers