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:46:25 +0400 |
commit | d5399193d4696064272649d3dca9120c731a5b17 (patch) | |
tree | a52e00d573ba349a405a1b6b7d7a6762e4ed1ef3 | |
parent | 270a1ebd8d6ac7d3b576c20fb0eceb6c866fa3fa (diff) | |
download | jquery-d5399193d4696064272649d3dca9120c731a5b17.tar.gz jquery-d5399193d4696064272649d3dca9120c731a5b17.zip |
Tests: Simplify "testTimeout" option
-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 830f60d24..aea91624e 100644 --- a/test/data/testrunner.js +++ b/test/data/testrunner.js @@ -21,7 +21,7 @@ var qunitModule = QUnit.module, // 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; |