我希望在执行一堆测试用例时终止所有其他测试用例。
我在ui界面上使用mocha(在浏览器上)。
如何强制终止测试运行?
呼叫mocha.run()
是否与“完全相反”。像'mocha.stopRun()'之类的东西。我在文档中找不到任何相关内容。
答案 0 :(得分:1)
我没有找到mocha导出的公共API,要求它在任意位置终止套件。但是,您可以在致电mocha.bail()
之前致电mocha.run()
,以便在测试失败后立即让mocha停止。如果您希望即使没有失败也能够停止,这是一种方法:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8"/>
<link href="node_modules/mocha/mocha.css" type="text/css" media="screen" rel="stylesheet" />
<script type="text/javascript" src="node_modules/mocha/mocha.js"></script>
</head>
<body>
<button id="terminate">Terminate Mocha</button>
<div id="mocha"></div>
<script>
var terminate = document.querySelector("#terminate");
var runner;
var terminated = false;
terminate.addEventListener("click", function () {
if (runner) {
// This tells the test suite to bail as soon as possible.
runner.suite.bail(true);
// Simulate an uncaught exception.
runner.uncaught(Error("FORCED TERMINATION"));
terminated = true;
}
return false;
});
mocha.setup("bdd");
describe("test", function () {
this.timeout(5 * 1000);
it("first", function (done) {
console.log("first: do nothing");
done();
});
it("second", function (done) {
console.log("second is executing");
setTimeout(function () {
// Don't call done() if we forcibly terminated mocha.
// If we called done() no matter what, then if we terminated
// the run while this test is running, mocha would mark it
// as failed, and succeeded!
if (!terminated)
done();
}, 2.5 * 1000);
});
it("third", function (done) {
console.log("third: do nothing");
done();
});
});
runner = mocha.run();
</script>
</body>
</html>
如果在mocha忙于第二次测试时单击“终止摩卡”按钮,将导致第二次测试失败,第三次测试将不会执行。您可以通过查看控制台中的输出来验证这一点。
如果您使用它作为停止自己的测试套件的方法,您可能希望使用“终止摩卡”按钮运行的代码注册异步操作,以便尽快终止这些操作,如果尽可能。
请注意,runner.suite.bail(true)
不是公共API的一部分。我一开始尝试调用mocha.bail()
但是在测试运行过程中调用它不起作用。 (只有在调用mocha.run()
之前调用它才会起作用。)runner.uncaught(...)
也是私有的。
答案 1 :(得分:-1)
您将要查找mocha进程,然后使用Node的process.kill。