diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2012-02-23 23:22:04 -0500 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-02-23 23:22:04 -0500 |
commit | 52816619a9fb6c5d329541c75407cd05a4750f1c (patch) | |
tree | a7c439d382e844d6f55d9499a41927514a198b9a /test | |
parent | dec2804c783003c13d356ed3fec664c3ac4b05ee (diff) | |
download | jquery-52816619a9fb6c5d329541c75407cd05a4750f1c.tar.gz jquery-52816619a9fb6c5d329541c75407cd05a4750f1c.zip |
Firefox stalls without longer delays.
Not really happy with this, but perhaps Jenkins will be.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/queue.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/queue.js b/test/unit/queue.js index e6291ffb7..6365df190 100644 --- a/test/unit/queue.js +++ b/test/unit/queue.js @@ -145,7 +145,7 @@ test("delay() can be stopped", function() { ok( true, "This first function was dequeued" ); next(); }) - .delay( 100, "alternate" ) + .delay( 1000, "alternate" ) .queue( "alternate", function() { run++; ok( true, "The function was dequeued immediately, the delay was stopped" ); @@ -156,7 +156,7 @@ test("delay() can be stopped", function() { .stop( "alternate", false, false ) // this test - .delay( 100 ) + .delay( 1000 ) .queue(function() { run++; ok( false, "This queue should never run" ); @@ -167,7 +167,7 @@ test("delay() can be stopped", function() { equal( run, 2, "Queue ran the proper functions" ); - setTimeout( start, 200 ); + setTimeout( start, 2000 ); }); |