// 捕获promise reject错误
process.on('unhandledRejection', function(reason, promise) {
log(reason);
});
// 捕获未知错误
process.on('uncaughtException', function(err) {
log(err);
if (err.message.indexOf(' EADDRINUSE ') > -1) {
process.exit();
}
});
↧
请教如何mocha测试以下2行代码
↧