File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ test("delay() can be stopped", function() {
145
145
ok ( true , "This first function was dequeued" ) ;
146
146
next ( ) ;
147
147
} )
148
- . delay ( 100 , "alternate" )
148
+ . delay ( 1000 , "alternate" )
149
149
. queue ( "alternate" , function ( ) {
150
150
run ++ ;
151
151
ok ( true , "The function was dequeued immediately, the delay was stopped" ) ;
@@ -156,7 +156,7 @@ test("delay() can be stopped", function() {
156
156
. stop ( "alternate" , false , false )
157
157
158
158
// this test
159
- . delay ( 100 )
159
+ . delay ( 1000 )
160
160
. queue ( function ( ) {
161
161
run ++ ;
162
162
ok ( false , "This queue should never run" ) ;
@@ -167,7 +167,7 @@ test("delay() can be stopped", function() {
167
167
168
168
equal ( run , 2 , "Queue ran the proper functions" ) ;
169
169
170
- setTimeout ( start , 200 ) ;
170
+ setTimeout ( start , 2000 ) ;
171
171
} ) ;
172
172
173
173
You can’t perform that action at this time.
0 commit comments