gpt4 book ai didi

unit-testing - QUnit 只运行第一个测试

转载 作者:行者123 更新时间:2023-12-03 09:43:50 27 4
gpt4 key购买 nike

在第一个之后,我无法让 QUnit 运行任何测试。为了确保我没有做一些奇怪的事情,我将代码精简为尽可能基本。

test("A", function () {
ok(true, "Test A");
});
test("B", function () {
ok(true, "Test B");
});

测试 A 是唯一运行的测试。没有抛出错误或其他任何东西。

我的 HTML 文件看起来像这样。
<!DOCTYPE html>
<html>
<head>
<title>Test title</title>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.10.0.css">
</head>
<body>
<div id="qunit"></div>
<script src="http://code.jquery.com/qunit/qunit-1.10.0.js"></script>
<script src="tests.js" type="text/javascript"></script>
</body>
</html>

最佳答案

发现问题了。原来是这个!
qunit.html?testNumber=1
我想在某个时候我打了 rerun它忽略了其他测试!

另一个问题值得称赞,因为它为我指明了正确的方向。 QUnit Won't Run Tests

关于unit-testing - QUnit 只运行第一个测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13752715/

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