tap-light
v1.0.0
Published
Very light test framework that outputs tap.
Downloads
4
Readme
tap-light
A very light test framework, meant for live testing.
test('msg', function (t) {
t.assert(1 + 1 === 2, 'Addition works as expected')
setTimeout(function () {
t.end()
}, 1000)
})