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;
}
});