diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2014-01-27 23:26:27 +0400 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2014-04-15 17:45:58 +0400 |
commit | b26628a2bb20abae0e0515394efdd621452267b1 (patch) | |
tree | 751ec656da86c14bce0afaae3970ead339531200 /test/data/testrunner.js | |
parent | a0568b07d8dcd94c3b8a27c0cf5747235c6bf93c (diff) | |
download | jquery-b26628a2bb20abae0e0515394efdd621452267b1.tar.gz jquery-b26628a2bb20abae0e0515394efdd621452267b1.zip |
Tests: Simplify "testTimeout" option
Diffstat (limited to 'test/data/testrunner.js')
-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 07e226207..72ec66129 100644 --- a/test/data/testrunner.js +++ b/test/data/testrunner.js @@ -21,7 +21,7 @@ var oldStart = window.start, // Max time for stop() and asyncTest() until it aborts test // and start()'s the next test. -QUnit.config.testTimeout = 20 * 1000; // 20 seconds +QUnit.config.testTimeout = 2e4; // 20 seconds // Enforce an "expect" argument or expect() call in all test bodies. QUnit.config.requireExpects = true; |