colored-tape

1.0.1 • Public • Published

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)

Dependents (0)

Package Sidebar

Install

npm i colored-tape

Weekly Downloads

4

Version

1.0.1

License

MIT

Last publish

Collaborators

  • morishitter