我想問一些關於茉莉間諜的事情。通常,我用狙這樣深入茉莉間諜
function getAuthrize(id) {
$.ajax({
type: "GET",
url: "/Account/LogOn" + id,
contentType: "application/json; charset=utf-8",
dataType: "json"
});
}
spyOn($, "ajax");
getAuthrize(123);
expect($.ajax).toHaveBeenCalled();
,但我想知道,如果我想驗證更喜歡的東西是什麼(稱爲Ajax調用的url
是/Account/LogOn
,type is 'Get'
等。提前
謝謝
我不使用'sinon'有沒有辦法在core'jasmine'中做到這一點? – Ancient
我還沒有在ajax請求上使用jasmine。也許這應該是幫助.. http://stackoverflow.com/questions/4662641/how-do-i-verify-jquery-ajax-events-with-jasmine –