Created
February 7, 2015 23:10
-
-
Save jugglinmike/8c02fdf46cc2402d47cc to your computer and use it in GitHub Desktop.
Mocha error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
describe('describe1', function() { | |
describe('describe2', function() { | |
it('test', function(done) { | |
setTimeout(function() { | |
throw new Error('global error'); | |
}, 0); | |
setTimeout(function() { | |
done(new Error('test error')); | |
}, 0); | |
}); | |
}); | |
}); | |
after(function() { | |
throw new Error(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment