Added a test for retrying a request on error using jQuery.ajax(this). Works as intended. Fixes #7461.

This commit is contained in:
jaubourg 2011-01-09 06:19:27 +01:00
parent afefb4f3d2
commit 63487505c6

View file

@ -257,6 +257,29 @@ test("jQuery.ajax() - responseText on error", function() {
});
});
test(".ajax() - retry with jQuery.ajax( this )", function() {
expect( 1 );
stop();
var firstTime = 1;
jQuery.ajax({
url: url("data/errorWithText.php"),
error: function() {
if ( firstTime ) {
firstTime = 0;
jQuery.ajax( this );
} else {
ok( true , "Test retrying with jQuery.ajax(this) works" );
start();
}
}
})
});
test(".ajax() - headers" , function() {
expect( 2 );