UNPKG

178 BJavaScriptView Raw
1var test = require('../../');
2
3test('double end', function (t) {
4 function doEnd() {
5 t.end();
6 }
7
8 t.equal(1 + 1, 2);
9 t.end();
10 setTimeout(doEnd, 5);
11});