本文介绍了QUnit:如何在不修改ajax调用的情况下测试ajax调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何为此编写QUnit测试:
How can I write a QUnit test for this:
function doSomethingWithAjax() {
$.ajax({
url: '/GetHelloWorld',
success: function(data) { $("#responseFromServer").text(data); },
});
}
Mockjax + qunit需要使用ajax complete()方法中的start()调用.
Mockjax+qunit requires a start() call in the ajax complete() method.
推荐答案
test("should mock ajax", function() {
$.ajax = function(options) {
equals(options.url, "/GetHelloWorld");
options.success("Hello");
};
doSomethingWithAjax();
equal($("#responseFromServer").text(), "Hello");
});
这篇关于QUnit:如何在不修改ajax调用的情况下测试ajax调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!