I am using AsyncTestCase for AjaxResponse while running my testcase getting failed and i am not sure about the answer how will i get is there is anything wrong with my code,

here is my tescase:

var AjaxResponseTest = AsyncTestCase('AjaxResponseTest');

AjaxResponseTest.prototype.testAjaxresponse = function(queue) {
    expectAsserts(1);
    $.mockjax({
       url: "/register",
       responseText: "success"
    });

    queue.call('Expecting a callback', function(callbacks) {
        var handler = callbacks.add(function(data) {
            assertEquals("'success' Should be Returned.", "success", data);
        });

        $.ajax({
            type: "POST",
            url: to,
            success: handler
        });
    });
};

production code:

$.ajax({
    type: "POST", 
    url: "/register", 
    data: dataString, 
    success: function(response,status) {
        result = response.responseText.trim();
        if (result!='true'){
            isButtonEnable = true;
        } else
            return true; 
        }
});
link|improve this question
Hi. Did you get this working? I see two things here. 1) Where is "to" defined? and 2) you should probably run $.mockjaxClear(); right before setting up your mock to avoid problems with multiple mocks. Also, I'm assuming you just want to get a feeling for how jsTetsDriver works since this code isn't actually testing any of your production code. – Per Salbark Jan 12 at 13:37
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.