Skip to content

Instantly share code, notes, and snippets.

@cranic
cranic / gist:7214904
Last active December 26, 2015 21:19 — forked from brianc/gist:7214887
describe('something that should not exit', function() {
it('sets a really long timeout', function(done) { // callback missing here
setTimeout(function() { console.log('Im still running'); done()}, 1000000)
});
after(function(done) {
setTimeout(done, 1000);
});
});