colored-tape

color result of tape

MIT 3 个版本
安装
npm install colored-tape
yarn add colored-tape
pnpm add colored-tape
bun add colored-tape
README

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)

版本列表
2.12.3 2014-05-06
1.0.1 2014-05-06
1.0.0 2014-05-06