From 52816619a9fb6c5d329541c75407cd05a4750f1c Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Thu, 23 Feb 2012 23:22:04 -0500 Subject: Firefox stalls without longer delays. Not really happy with this, but perhaps Jenkins will be. --- test/unit/queue.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') 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 ); }); -- cgit v1.2.3