如何在QUnit中重置状态?

时间:2012-02-23 11:29:28

标签: javascript jquery qunit

有没有办法在不重新加载页面的情况下重置QUnit测试?

在文档中,它说Qunit.init()如果已经初始化则重新初始化,但这似乎不起作用。 我收到一条消息“正在运行......”,结果应该是。

http://docs.jquery.com/QUnit

1 个答案:

答案 0 :(得分:4)

将所有测试包裹在函数中。

准备好运行测试时调用该函数。

如果你想在QUnit完成后重新运行测试,那么制作并调用类似'rerunQUnitTest'的函数。

var runAllTest = function(){
    test( "test 1", function(){
        var a = true;
        equal( a, true, "function a should return false" );
    });
};
// call rerunQUnitTest to reset and run your tests again.
var rerunQUnitTest = function(){
    QUnit.reset();  // should clear the DOM
    QUnit.init();   // resets the qunit test environment
    QUnit.start();  // allows for the new test to be captured.
    runAllTest();   // runs your functions that has all the test wrapped inside.
};
runAllTest();   // auto runs your tests.