UNPKG

tape

Version:

tap-producing test harness for node and browsers

14 lines (10 loc) 172 B
'use strict'; var test = require('../../'); test('double end', function (t) { function doEnd() { t.end(); } t.equal(1 + 1, 2); t.end(); setTimeout(doEnd, 5); });