Skip to content

Commit 5281661

Browse files
committed
Firefox stalls without longer delays.
Not really happy with this, but perhaps Jenkins will be.
1 parent dec2804 commit 5281661

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit/queue.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ test("delay() can be stopped", function() {
145145
ok( true, "This first function was dequeued" );
146146
next();
147147
})
148-
.delay( 100, "alternate" )
148+
.delay( 1000, "alternate" )
149149
.queue( "alternate", function() {
150150
run++;
151151
ok( true, "The function was dequeued immediately, the delay was stopped" );
@@ -156,7 +156,7 @@ test("delay() can be stopped", function() {
156156
.stop( "alternate", false, false )
157157

158158
// this test
159-
.delay( 100 )
159+
.delay( 1000 )
160160
.queue(function() {
161161
run++;
162162
ok( false, "This queue should never run" );
@@ -167,7 +167,7 @@ test("delay() can be stopped", function() {
167167

168168
equal( run, 2, "Queue ran the proper functions" );
169169

170-
setTimeout( start, 200 );
170+
setTimeout( start, 2000 );
171171
});
172172

173173

0 commit comments

Comments
 (0)