最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Can't get $.ajax.mostRecentCall to work with jasmine 2.0.2 - Stack Overflow

programmeradmin5浏览0评论

Having real trouble getting a simple example to work. I am using this example taken from

describe("Test for spies", function() {
 function sendRequest(callbacks, configuration) {
        $.ajax({
            url: configuration.url,
            dataType: "json",
            success: function(data) {
                callbacks.checkForInformation(data);
            },
            error: function(data) {
                callbacks.displayErrorMessage();
            },
            timeout: configuration.remainingCallTime
        });
    }

    it("should make an Ajax request to the correct URL", function() {

    var configuration = {
        url : "",
        remainingCallTime : 30000
    };

        spyOn($, "ajax");

        sendRequest(undefined, configuration);
        expect($.ajax.mostRecentCall.args[0]["url"]).toEqual(configuration.url);
    });
});

For whatever reason, $.ajax.mostRecentCall is undefined.

Using jasmine 2.0.2 and jasmine jquery 2.0.5.

Fiddle here: /

Having real trouble getting a simple example to work. I am using this example taken from https://gist.github./Madhuka/7854709

describe("Test for spies", function() {
 function sendRequest(callbacks, configuration) {
        $.ajax({
            url: configuration.url,
            dataType: "json",
            success: function(data) {
                callbacks.checkForInformation(data);
            },
            error: function(data) {
                callbacks.displayErrorMessage();
            },
            timeout: configuration.remainingCallTime
        });
    }

    it("should make an Ajax request to the correct URL", function() {

    var configuration = {
        url : "http://www.google.",
        remainingCallTime : 30000
    };

        spyOn($, "ajax");

        sendRequest(undefined, configuration);
        expect($.ajax.mostRecentCall.args[0]["url"]).toEqual(configuration.url);
    });
});

For whatever reason, $.ajax.mostRecentCall is undefined.

Using jasmine 2.0.2 and jasmine jquery 2.0.5.

Fiddle here: http://jsfiddle/sidouglas/85b35993/

Share Improve this question asked Dec 2, 2014 at 0:21 SimonSimon 2,6536 gold badges38 silver badges55 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 24

This the old 1.x Jasmine syntax:

$.ajax.mostRecentCall.args

The syntax for Jasmine 2 is:

$.ajax.calls.mostRecent().args

So your assertion should be:

expect($.ajax.calls.mostRecent().args[0]["url"]).toEqual(configuration.url);
发布评论

评论列表(0)

  1. 暂无评论