diff options
-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 ); }); |