UNPKG

tap-on

Version:

A nicer way to handle tap output

12 lines (9 loc) 182 B
import test from 'tape' test('a + b = ab', t => { t.same('a' + 'b', 'ab') t.end() }) test('skipped', { skip: true }, t => { t.same('ab' + 'c', 'abc') t.end() })