gpt4 book ai didi

javascript - 如何终止 Mocha 测试运行?

转载 作者:搜寻专家 更新时间:2023-10-31 23:27:34 25 4
gpt4 key购买 nike

我想在执行一堆测试用例时终止所有其余测试用例。

我正在 ui 界面(在浏览器上)上使用 mocha。

如何强制终止测试运行?

是否有任何与调用 mocha.run() 完全“相反”的东西。类似“mocha.stopRun()”的东西。我在文档中找不到与此相关的任何内容。

最佳答案

我没有发现 mocha 导出的公共(public) API 要求它在任意位置终止套件。但是,您可以在调用 mocha.run() 之前调用 mocha.bail() 以要求 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 正忙于第二次测试时单击“终止 Mocha”按钮,将导致第二次测试失败并且第三次测试不会执行。您可以通过查看控制台中的输出来验证这一点。

如果您要使用它作为停止您自己的测试套件的方法,您可能希望使用“终止 Mocha”按钮运行的代码注册您的异步操作,以便尽快终止这些操作,如果尽一切可能。

请注意,runner.suite.bail(true) 不是公共(public) API 的一部分。我试过首先调用 mocha.bail() 但在测试运行过程中调用它不起作用。 (只有在调用 mocha.run() 之前调用它才会起作用。)runner.uncaught(...) 也是私有(private)的。

关于javascript - 如何终止 Mocha 测试运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20235631/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com