File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -174,15 +174,15 @@ describe('browser', function(){
174
174
expect ( deferId1 ) . toBeDefined ( ) ;
175
175
expect ( deferId2 ) . toBeDefined ( ) ;
176
176
expect ( deferId1 ) . not . toEqual ( deferId2 ) ;
177
- } )
177
+ } ) ;
178
178
179
179
180
180
describe ( 'cancel' , function ( ) {
181
181
it ( 'should allow tasks to be canceled with returned deferId' , function ( ) {
182
182
var log = [ ] ,
183
- deferId1 = browser . defer ( function ( ) { log . push ( 'cancel me' ) } ) ,
184
- deferId2 = browser . defer ( function ( ) { log . push ( 'ok' ) } ) ,
185
- deferId3 = browser . defer ( function ( ) { log . push ( 'cancel me, now!' ) } ) ;
183
+ deferId1 = browser . defer ( function ( ) { log . push ( 'cancel me' ) ; } ) ,
184
+ deferId2 = browser . defer ( function ( ) { log . push ( 'ok' ) ; } ) ,
185
+ deferId3 = browser . defer ( function ( ) { log . push ( 'cancel me, now!' ) ; } ) ;
186
186
187
187
expect ( log ) . toEqual ( [ ] ) ;
188
188
browser . defer . cancel ( deferId1 ) ;
You can’t perform that action at this time.
0 commit comments