diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2014-03-13 03:26:27 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2014-03-13 03:26:42 +0100 |
commit | 854d242db457e3191e3ca1f2a366f6c981a12fbc (patch) | |
tree | 219d6a36988844ddda3da7819a85db11afa572f4 /test | |
parent | 6a89db86ed817f6a7498076e2a06b90f9fce0831 (diff) | |
download | jquery-854d242db457e3191e3ca1f2a366f6c981a12fbc.tar.gz jquery-854d242db457e3191e3ca1f2a366f6c981a12fbc.zip |
Core: Bump timeouts to stabilize doc ready test
The "document ready when jQuery loaded asynchronously" test fails all the time
in iOS7 and sometimes in other browsers. Bumping the timeouts *might* help
these other browsers to be less flakey here.
Diffstat (limited to 'test')
-rw-r--r-- | test/data/core/dont_return.php | 2 | ||||
-rw-r--r-- | test/data/core/dynamic_ready.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/data/core/dont_return.php b/test/data/core/dont_return.php index 3ac56e1ef..4168cb3f7 100644 --- a/test/data/core/dont_return.php +++ b/test/data/core/dont_return.php @@ -1,3 +1,3 @@ <?php -sleep(10000); +sleep(100000); ?> diff --git a/test/data/core/dynamic_ready.html b/test/data/core/dynamic_ready.html index 799145b98..3b29c1104 100644 --- a/test/data/core/dynamic_ready.html +++ b/test/data/core/dynamic_ready.html @@ -28,7 +28,7 @@ timeoutId = setTimeout(function () { timeoutFired = true; window.parent.iframeCallback( false ); - }, 3000); + }, 10000); }); </script> </body> |