@@ -168,7 +168,7 @@ describe('animations', function() {
168
168
inject ( function ( $animate , $rootScope ) {
169
169
$animate . enter ( element , parent ) ;
170
170
$rootScope . $digest ( ) ;
171
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
171
+ expect ( capturedAnimation ) . toBeNull ( ) ;
172
172
expect ( element [ 0 ] . parentNode ) . toEqual ( parent [ 0 ] ) ;
173
173
174
174
hidden = false ;
@@ -188,7 +188,7 @@ describe('animations', function() {
188
188
189
189
$animate . enter ( element , parent ) ;
190
190
$rootScope . $digest ( ) ;
191
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
191
+ expect ( capturedAnimation ) . toBeNull ( ) ;
192
192
193
193
element . addClass ( 'only-allow-this-animation' ) ;
194
194
@@ -208,7 +208,7 @@ describe('animations', function() {
208
208
209
209
$animate . enter ( svgElement , parent ) ;
210
210
$rootScope . $digest ( ) ;
211
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
211
+ expect ( capturedAnimation ) . toBeNull ( ) ;
212
212
213
213
svgElement . attr ( 'class' , 'element only-allow-this-animation-svg' ) ;
214
214
@@ -290,7 +290,7 @@ describe('animations', function() {
290
290
$animate . leave ( element ) ;
291
291
$rootScope . $digest ( ) ;
292
292
293
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
293
+ expect ( capturedAnimation ) . toBeNull ( ) ;
294
294
expect ( element [ 0 ] . parentNode ) . toBeFalsy ( ) ;
295
295
} ) ;
296
296
} ) ;
@@ -314,9 +314,9 @@ describe('animations', function() {
314
314
315
315
$animate . enter ( element , parent ) ;
316
316
317
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
317
+ expect ( capturedAnimation ) . toBeNull ( ) ;
318
318
$rootScope . $digest ( ) ;
319
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
319
+ expect ( capturedAnimation ) . toBeNull ( ) ;
320
320
} ) ) ;
321
321
322
322
it ( 'should disable all animations on the given element' ,
@@ -328,15 +328,15 @@ describe('animations', function() {
328
328
expect ( $animate . enabled ( element ) ) . toBeFalsy ( ) ;
329
329
330
330
$animate . addClass ( element , 'red' ) ;
331
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
331
+ expect ( capturedAnimation ) . toBeNull ( ) ;
332
332
$rootScope . $digest ( ) ;
333
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
333
+ expect ( capturedAnimation ) . toBeNull ( ) ;
334
334
335
335
$animate . enabled ( element , true ) ;
336
336
expect ( $animate . enabled ( element ) ) . toBeTruthy ( ) ;
337
337
338
338
$animate . addClass ( element , 'blue' ) ;
339
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
339
+ expect ( capturedAnimation ) . toBeNull ( ) ;
340
340
$rootScope . $digest ( ) ;
341
341
expect ( capturedAnimation ) . toBeTruthy ( ) ;
342
342
} ) ) ;
@@ -347,14 +347,14 @@ describe('animations', function() {
347
347
$animate . enabled ( parent , false ) ;
348
348
349
349
$animate . enter ( element , parent ) ;
350
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
350
+ expect ( capturedAnimation ) . toBeNull ( ) ;
351
351
$rootScope . $digest ( ) ;
352
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
352
+ expect ( capturedAnimation ) . toBeNull ( ) ;
353
353
354
354
$animate . enabled ( parent , true ) ;
355
355
356
356
$animate . enter ( element , parent ) ;
357
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
357
+ expect ( capturedAnimation ) . toBeNull ( ) ;
358
358
$rootScope . $digest ( ) ;
359
359
expect ( capturedAnimation ) . toBeTruthy ( ) ;
360
360
} ) ) ;
@@ -370,11 +370,11 @@ describe('animations', function() {
370
370
371
371
$animate . addClass ( element , 'red' ) ;
372
372
$rootScope . $digest ( ) ;
373
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
373
+ expect ( capturedAnimation ) . toBeNull ( ) ;
374
374
375
375
$animate . addClass ( child , 'red' ) ;
376
376
$rootScope . $digest ( ) ;
377
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
377
+ expect ( capturedAnimation ) . toBeNull ( ) ;
378
378
379
379
$animate . enabled ( element , true ) ;
380
380
@@ -402,7 +402,7 @@ describe('animations', function() {
402
402
$rootScope . items = [ 1 , 2 , 3 , 4 , 5 ] ;
403
403
$rootScope . $digest ( ) ;
404
404
405
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
405
+ expect ( capturedAnimation ) . toBeNull ( ) ;
406
406
} ) ) ;
407
407
408
408
it ( 'should not attempt to perform an animation on a text node element' ,
@@ -414,7 +414,7 @@ describe('animations', function() {
414
414
$animate . addClass ( textNode , 'some-class' ) ;
415
415
$rootScope . $digest ( ) ;
416
416
417
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
417
+ expect ( capturedAnimation ) . toBeNull ( ) ;
418
418
} ) ) ;
419
419
420
420
it ( 'should not attempt to perform an animation on an empty jqLite collection' ,
@@ -426,7 +426,7 @@ describe('animations', function() {
426
426
$animate . addClass ( emptyNode , 'some-class' ) ;
427
427
$rootScope . $digest ( ) ;
428
428
429
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
429
+ expect ( capturedAnimation ) . toBeNull ( ) ;
430
430
} )
431
431
) ;
432
432
@@ -439,7 +439,7 @@ describe('animations', function() {
439
439
440
440
$animate . leave ( textNode ) ;
441
441
$rootScope . $digest ( ) ;
442
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
442
+ expect ( capturedAnimation ) . toBeNull ( ) ;
443
443
expect ( textNode [ 0 ] . parentNode ) . not . toBe ( parentNode ) ;
444
444
} ) ) ;
445
445
@@ -455,7 +455,7 @@ describe('animations', function() {
455
455
456
456
$animate . leave ( commentNode ) ;
457
457
$rootScope . $digest ( ) ;
458
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
458
+ expect ( capturedAnimation ) . toBeNull ( ) ;
459
459
expect ( commentNode [ 0 ] . parentNode ) . not . toBe ( parentNode ) ;
460
460
} ) ) ;
461
461
@@ -667,13 +667,13 @@ describe('animations', function() {
667
667
668
668
$animate . removeClass ( element , 'something-to-remove' ) ;
669
669
$rootScope . $digest ( ) ;
670
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
670
+ expect ( capturedAnimation ) . toBeNull ( ) ;
671
671
672
672
element . addClass ( 'something-to-add' ) ;
673
673
674
674
$animate . addClass ( element , 'something-to-add' ) ;
675
675
$rootScope . $digest ( ) ;
676
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
676
+ expect ( capturedAnimation ) . toBeNull ( ) ;
677
677
} ) ) ;
678
678
} ) ;
679
679
@@ -689,7 +689,7 @@ describe('animations', function() {
689
689
parent . append ( element ) ;
690
690
$animate . animate ( element , null , toStyle ) ;
691
691
$rootScope . $digest ( ) ;
692
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
692
+ expect ( capturedAnimation ) . toBeNull ( ) ;
693
693
} ) ;
694
694
} ) ;
695
695
@@ -700,7 +700,7 @@ describe('animations', function() {
700
700
parent . append ( element ) ;
701
701
$animate . animate ( element , fromStyle ) ;
702
702
$rootScope . $digest ( ) ;
703
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
703
+ expect ( capturedAnimation ) . toBeNull ( ) ;
704
704
} ) ) ;
705
705
706
706
it ( 'should perform an animation if only from styles are provided as well as any valid classes' ,
@@ -712,7 +712,7 @@ describe('animations', function() {
712
712
var options = { removeClass : 'goop' } ;
713
713
$animate . animate ( element , fromStyle , null , null , options ) ;
714
714
$rootScope . $digest ( ) ;
715
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
715
+ expect ( capturedAnimation ) . toBeNull ( ) ;
716
716
717
717
fromStyle = { color : 'blue' } ;
718
718
options = { addClass : 'goop' } ;
@@ -816,11 +816,11 @@ describe('animations', function() {
816
816
817
817
var elm1 = $compile ( '<div class="animated"></div>' ) ( $rootScope ) ;
818
818
819
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
819
+ expect ( capturedAnimation ) . toBeNull ( ) ;
820
820
$animate . addClass ( elm1 , 'klass2' ) ;
821
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
821
+ expect ( capturedAnimation ) . toBeNull ( ) ;
822
822
$rootScope . $digest ( ) ;
823
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
823
+ expect ( capturedAnimation ) . toBeNull ( ) ;
824
824
} ) ) ;
825
825
826
826
it ( 'should skip animations if the element is attached to the $rootElement, but not apart of the body' ,
@@ -834,30 +834,30 @@ describe('animations', function() {
834
834
newParent . append ( $rootElement ) ;
835
835
$rootElement . append ( elm1 ) ;
836
836
837
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
837
+ expect ( capturedAnimation ) . toBeNull ( ) ;
838
838
$animate . addClass ( elm1 , 'klass2' ) ;
839
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
839
+ expect ( capturedAnimation ) . toBeNull ( ) ;
840
840
$rootScope . $digest ( ) ;
841
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
841
+ expect ( capturedAnimation ) . toBeNull ( ) ;
842
842
} ) ) ;
843
843
844
844
it ( 'should skip the animation if the element is removed from the DOM before the post digest kicks in' ,
845
845
inject ( function ( $animate , $rootScope ) {
846
846
847
847
$animate . enter ( element , parent ) ;
848
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
848
+ expect ( capturedAnimation ) . toBeNull ( ) ;
849
849
850
850
element . remove ( ) ;
851
851
$rootScope . $digest ( ) ;
852
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
852
+ expect ( capturedAnimation ) . toBeNull ( ) ;
853
853
} ) ) ;
854
854
855
855
it ( 'should be blocked when there is an ongoing structural parent animation occurring' ,
856
856
inject ( function ( $rootScope , $rootElement , $animate ) {
857
857
858
858
parent . append ( element ) ;
859
859
860
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
860
+ expect ( capturedAnimation ) . toBeNull ( ) ;
861
861
$animate . move ( parent , parent2 ) ;
862
862
$rootScope . $digest ( ) ;
863
863
@@ -867,7 +867,7 @@ describe('animations', function() {
867
867
868
868
$animate . addClass ( element , 'blue' ) ;
869
869
$rootScope . $digest ( ) ;
870
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
870
+ expect ( capturedAnimation ) . toBeNull ( ) ;
871
871
} ) ) ;
872
872
873
873
it ( 'should disable all child animations for atleast one turn when a structural animation is issued' ,
@@ -917,7 +917,7 @@ describe('animations', function() {
917
917
918
918
parent . append ( element ) ;
919
919
920
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
920
+ expect ( capturedAnimation ) . toBeNull ( ) ;
921
921
$animate . addClass ( parent , 'rogers' ) ;
922
922
$rootScope . $digest ( ) ;
923
923
@@ -940,7 +940,7 @@ describe('animations', function() {
940
940
$animate . addClass ( element , 'rumlow' ) ;
941
941
$animate . move ( parent , null , parent2 ) ;
942
942
943
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
943
+ expect ( capturedAnimation ) . toBeNull ( ) ;
944
944
expect ( capturedAnimationHistory . length ) . toBe ( 0 ) ;
945
945
$rootScope . $digest ( ) ;
946
946
@@ -1193,12 +1193,12 @@ describe('animations', function() {
1193
1193
inject ( function ( $animate , $rootScope ) {
1194
1194
1195
1195
$animate . enter ( element , parent ) ;
1196
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
1196
+ expect ( capturedAnimation ) . toBeNull ( ) ;
1197
1197
1198
1198
$animate . addClass ( element , 'red' ) ;
1199
1199
expect ( element ) . not . toHaveClass ( 'red' ) ;
1200
1200
1201
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
1201
+ expect ( capturedAnimation ) . toBeNull ( ) ;
1202
1202
$rootScope . $digest ( ) ;
1203
1203
1204
1204
expect ( capturedAnimation [ 1 ] ) . toBe ( 'enter' ) ;
@@ -1227,7 +1227,7 @@ describe('animations', function() {
1227
1227
$animate . removeClass ( element , 'red' ) ;
1228
1228
$rootScope . $digest ( ) ;
1229
1229
1230
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
1230
+ expect ( capturedAnimation ) . toBeNull ( ) ;
1231
1231
1232
1232
$animate . addClass ( element , 'blue' ) ;
1233
1233
$rootScope . $digest ( ) ;
@@ -1344,7 +1344,7 @@ describe('animations', function() {
1344
1344
$animate . removeClass ( element , 'four' ) ;
1345
1345
1346
1346
$rootScope . $digest ( ) ;
1347
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
1347
+ expect ( capturedAnimation ) . toBeNull ( ) ;
1348
1348
} ) ) ;
1349
1349
1350
1350
it ( 'but not skip the animation if it is a structural animation and if there are no classes to be animated' ,
@@ -1632,7 +1632,7 @@ describe('animations', function() {
1632
1632
1633
1633
$animate . addClass ( animateElement , 'red' ) ;
1634
1634
$rootScope . $digest ( ) ;
1635
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
1635
+ expect ( capturedAnimation ) . toBeNull ( ) ;
1636
1636
1637
1637
// Pin the element to the app root to enable animations
1638
1638
$animate . pin ( pinElement , $rootElement ) ;
@@ -1676,13 +1676,13 @@ describe('animations', function() {
1676
1676
1677
1677
$animate . addClass ( animateElement , 'red' ) ;
1678
1678
$rootScope . $digest ( ) ;
1679
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
1679
+ expect ( capturedAnimation ) . toBeNull ( ) ;
1680
1680
1681
1681
$animate . pin ( pinElement , pinTargetElement ) ;
1682
1682
1683
1683
$animate . addClass ( animateElement , 'blue' ) ;
1684
1684
$rootScope . $digest ( ) ;
1685
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
1685
+ expect ( capturedAnimation ) . toBeNull ( ) ;
1686
1686
1687
1687
dealoc ( pinElement ) ;
1688
1688
} ) ;
@@ -1720,7 +1720,7 @@ describe('animations', function() {
1720
1720
1721
1721
$animate . addClass ( animateElement , 'blue' ) ;
1722
1722
$rootScope . $digest ( ) ;
1723
- expect ( capturedAnimation ) . toBeFalsy ( ) ;
1723
+ expect ( capturedAnimation ) . toBeNull ( ) ;
1724
1724
1725
1725
$animate . enabled ( pinHostElement , true ) ;
1726
1726
0 commit comments