uncaughtException
v1.0.0
Published
uncaughtException handle in mocha
Readme
uncaughtException
this module is used in mocha test.
it('should throw error xxx throws error', done => {
uncaughtException((err) => {
assert(err.message === 'xxx');
done();
});
xxx();
});