diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2012-03-05 21:37:43 -0500 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-03-05 21:37:43 -0500 |
commit | e529d91ccd00a75fcfa45a6aebaf8ecf0a9bac4b (patch) | |
tree | c91d3b51da6d08d7e6f0197b6452eb1fa609cee7 | |
parent | d3320462df1253196e61b2daadc3cdfe1b4c3771 (diff) | |
download | jquery-e529d91ccd00a75fcfa45a6aebaf8ecf0a9bac4b.tar.gz jquery-e529d91ccd00a75fcfa45a6aebaf8ecf0a9bac4b.zip |
Add more delay to the "halfway" tests for non-focused cases.
When the browser window isn't visible, setTimeouts have 1-second granularity.
-rw-r--r-- | test/unit/effects.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js index a3c2152ce..e478cdf63 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -1157,7 +1157,7 @@ function( method, defProp ) { test( method + "().stop()." + method + "()", function() { expect( 8 ); - var animTime = 100; + var animTime = 2000; jQuery.each([ "in", "out" ], function( i, type ) { var $elem = jQuery( "#" + method.toLowerCase() + type ), |