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() {
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
You can’t perform that action at this time.
0 commit comments