我正在研究用于 JavaScript 单元测试的 QUnit。我处于一种奇怪的情况,我正在检查 Ajax 调用返回的值。
对于以下测试,我故意尝试使其失败。
// test to check if the persons are returned!
test("getPersons", function() {
getPersons(function(response) {
// persons = $.evalJSON(response.d);
equals("boo", "Foo", "The name is valid");
});
});
但它最终总是通过。这是进行 Ajax 调用的 getPersons 方法。
function getPersons(callback) {
var persons = null;
$.ajax({
type: "POST",
dataType: "json",
data: {},
contentType: "application/json",
url: "AjaxService.asmx/GetPersons",
success: function(response) {
callback(response);
}
});
}