]> source.dussan.org Git - jquery.git/commitdiff
Tests: Increase QUnit timeout
authorMichał Gołębiowski <m.goleb@gmail.com>
Sun, 26 Apr 2015 15:11:10 +0000 (17:11 +0200)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 27 Apr 2015 18:27:05 +0000 (20:27 +0200)
Android 2.3 is very slow & times out a lot in async tests, they have to be
restarted multiple times to settle. Long test execution is not a huge problem
as Android 2.3 is tested only periodically during the night, unstable tests
are a bigger problem. This might mitigate that.

In a regular scenario almost all tests should pass so increasing the timeout
for all browsers shouldn't have a huge impact on overall test time.

Closes gh-2232

test/data/testrunner.js

index 682a454f2ccd4b5857e415ed038656908ca5750e..3701870ad296684c316a9c54c311e2500fdb903a 100644 (file)
@@ -15,7 +15,7 @@ var oldCacheLength = 0,
 
 // Max time for stop() and asyncTest() until it aborts test
 // and start()'s the next test.
-QUnit.config.testTimeout = 2e4; // 20 seconds
+QUnit.config.testTimeout = 12e4; // 2 minutes
 
 // Enforce an "expect" argument or expect() call in all test bodies.
 QUnit.config.requireExpects = true;