mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 04:28:05 -05:00
Enforce 20s timeout for all unit tests.
This commit is contained in:
committed by
Rick Waldron waldron.rick@gmail.com
parent
8ebb2f4793
commit
df2a22ee61
@@ -1,7 +1,13 @@
|
||||
jQuery.noConflict(); // Allow the test to run with other libs or jQuery's.
|
||||
/**
|
||||
* Allow the test suite to run with other libs or jQuery's.
|
||||
*/
|
||||
jQuery.noConflict();
|
||||
|
||||
// jQuery-specific QUnit.reset
|
||||
/**
|
||||
* QUnit hooks
|
||||
*/
|
||||
(function() {
|
||||
// jQuery-specific QUnit.reset
|
||||
var reset = QUnit.reset,
|
||||
ajaxSettings = jQuery.ajaxSettings;
|
||||
|
||||
@@ -12,10 +18,20 @@ jQuery.noConflict(); // Allow the test to run with other libs or jQuery's.
|
||||
};
|
||||
})();
|
||||
|
||||
// load testswarm agent
|
||||
/**
|
||||
* QUnit configuration
|
||||
*/
|
||||
// Max time for stop() and asyncTest() until it aborts test
|
||||
// and start()'s the next test.
|
||||
QUnit.config.testTimeout = 20 * 1000; // 20 seconds
|
||||
|
||||
/**
|
||||
* Load the TestSwarm listener if swarmURL is in the address.
|
||||
*/
|
||||
(function() {
|
||||
var url = window.location.search;
|
||||
url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) );
|
||||
url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + "swarmURL=".length ) );
|
||||
|
||||
if ( !url || url.indexOf("http") !== 0 ) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user