ttr
v0.1.3
Published
tiny test reporter
Downloads
2
Readme
ttr
tiny test reporter
This is a work in progress.
Installation
$ npm install ttr
Usage
var test = require('ttr')
test('this is a test', function (t) {
t.eq(2, 1 + 1)
t.pass('this will always pass')
})
test('this is only a test', function (t) {
t.fail('this will never pass')
})
test.result()
API