diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-04-26 17:11:10 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-04-27 20:27:05 +0200 |
commit | ff18d8e2060ae7c15c7694dc6bcbbeb9cbfbdaa4 (patch) | |
tree | bc8d9545d85aa71bfb1aaeb82781b372c4de5830 /test/data | |
parent | f6de5a90ddde29e9096c2e45b9da21e65882b7c0 (diff) | |
download | jquery-ff18d8e2060ae7c15c7694dc6bcbbeb9cbfbdaa4.tar.gz jquery-ff18d8e2060ae7c15c7694dc6bcbbeb9cbfbdaa4.zip |
Tests: Increase QUnit timeout
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
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/testrunner.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/testrunner.js b/test/data/testrunner.js index 682a454f2..3701870ad 100644 --- a/test/data/testrunner.js +++ b/test/data/testrunner.js @@ -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; |