blob: 43929e51bbb83facd61eca84dd59b136740d8f37 [file] [log] [blame]
var test = require('../../');
test('double end', function (t) {
function doEnd() {
t.end();
}
t.equal(1 + 1, 2);
t.end();
setTimeout(doEnd, 5);
});