gpt4 book ai didi

javascript - QUnit 无法识别多个测试

转载 作者:行者123 更新时间:2023-11-28 19:39:14 25 4
gpt4 key购买 nike

我在使用 QUNIT 时遇到问题,无论我做什么,测试套件都只会识别一个测试或模块,即使我在 javascript 中有多个。任何帮助将不胜感激!

    <script>
$(document).ready(function(){
QUnit.log = function(result, message)
{
if (window.console && window.console.log)
{
window.console.log(result +' :: '+ message);
}
}
module("Basic Unit Test");
test("Sample test", function()
{
expect(1);
equal(divide(4,2),2, 'Expected 2 as the result, result was ' + divide(4,2));
});
test("Test two", function() {
expect(1);
equal(divide(8,2),2,'Expected 4 as the result, result was ' + divide(8,2));
});

function divide(a,b){
return a / b;
}
});

</script>

最佳答案

您可能在 Url 中有 QUnit-Url-Parameters,它将测试限制在这些过滤器参数中指定的模块/测试(关于 http://docs.jquery.com/Qunit,请参阅“URL 参数”)。从一个干净的 URL 开始,然后应该执行所有测试。

例如。您的 URL 包含 blah.html?testNumber=1。这意味着只会运行一个测试。删除 ?testNumber=1

关于javascript - QUnit 无法识别多个测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10970719/

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