mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
error case for an ajax test
This commit is contained in:
parent
4a99fcf6e4
commit
29411a4405
@ -642,8 +642,12 @@ test("jQuery.ajax() - script, Remote with POST", function() {
|
||||
type: "POST",
|
||||
dataType: "script",
|
||||
success: function(data, status){
|
||||
ok( foobar, "Script results returned (GET, no callback)" );
|
||||
equals( status, "success", "Script results returned (GET, no callback)" );
|
||||
ok( foobar, "Script results returned (POST, no callback)" );
|
||||
equals( status, "success", "Script results returned (POST, no callback)" );
|
||||
start();
|
||||
},
|
||||
error: function(xhr) {
|
||||
ok( false, "ajax error, status code: " + xhr.status );
|
||||
start();
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user