tap-on
Version:
A nicer way to handle tap output
27 lines (21 loc) • 438 B
JavaScript
/* Modules */
import test from 'tape'
test('1 === 1', t => {
t.plan(3)
t.equal(1, 1, 'test is equal', { data: 'cool' })
t.equal(1, 1, 'test skip extra', { skip: true })
t.notEqual(1, 0)
t.end()
})
test('1 === 1 with log', t => {
t.equal(1, 1, 'test is equal')
t.end()
})
test('2 === 2', t => {
t.equal(2, 2)
t.end()
})
test('skipped test', { skip: true }, t => {
t.ok(true)
t.end()
})