Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

请教如何mocha测试以下2行代码

$
0
0
// 捕获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();
    }
});

Viewing all articles
Browse latest Browse all 14821

Trending Articles