The timeout test was waiting for 10 seconds - unnecessary, lowered it to 1 second.

This commit is contained in:
John Resig 2009-01-05 22:05:59 +00:00
parent 4503457616
commit 60226c8a30

View file

@ -821,7 +821,7 @@ test("ajaxSetup()", function() {
test("custom timeout does not set error message when timeout occurs, see #970", function() {
stop();
jQuery.ajax({
url: "data/name.php?wait=10",
url: "data/name.php?wait=1",
timeout: 500,
error: function(request, status) {
ok( status != null, "status shouldn't be null in error handler" );