Skip to content

Commit 8013163

Browse files
committed
Fix frequent Firefox failures -- force longer timeouts.
1 parent 935df49 commit 8013163

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/ajax.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,7 @@ test("jQuery.getScript(String, Function) - with callback", function() {
12871287
jQuery.getScript(url("data/test.js"), function( data, _, jqXHR ) {
12881288
equal( foobar, "bar", "Check if script was evaluated" );
12891289
strictEqual( data, jqXHR.responseText, "Same-domain script requests returns the source of the script (#8082)" );
1290-
setTimeout(start, 100);
1290+
setTimeout(start, 1000);
12911291
});
12921292
});
12931293

0 commit comments

Comments
 (0)