UNPKG

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