@@ -306,7 +306,7 @@ describe('ngAnimate integration tests', function() {
306
306
} ) ;
307
307
} ) ;
308
308
309
- it ( 'should not issue any reflows for class-based animations if none of them have children with queued animations' , function ( ) {
309
+ it ( 'should only issue one reflow for class-based animations if none of them have children with queued animations' , function ( ) {
310
310
module ( 'ngAnimateMock' ) ;
311
311
inject ( function ( $animate , $compile , $rootScope , $rootElement , $$rAF , $document ) {
312
312
element = jqLite (
@@ -328,11 +328,35 @@ describe('ngAnimate integration tests', function() {
328
328
329
329
$rootScope . exp = true ;
330
330
$rootScope . $digest ( ) ;
331
- expect ( $animate . reflows ) . toBe ( 0 ) ;
331
+ expect ( $animate . reflows ) . toBe ( 1 ) ;
332
332
333
333
$rootScope . exp2 = true ;
334
334
$rootScope . $digest ( ) ;
335
+ expect ( $animate . reflows ) . toBe ( 2 ) ;
336
+ } ) ;
337
+ } ) ;
338
+
339
+ it ( 'should always issue atleast one reflow incase there are no parent class-based animations' , function ( ) {
340
+ module ( 'ngAnimateMock' ) ;
341
+ inject ( function ( $animate , $compile , $rootScope , $rootElement , $$rAF , $document ) {
342
+ element = jqLite (
343
+ '<div ng-repeat="item in items" ng-class="{someAnimation:exp}">' +
344
+ '{{ item }}' +
345
+ '</div>'
346
+ ) ;
347
+
348
+ $rootElement . append ( element ) ;
349
+ jqLite ( $document [ 0 ] . body ) . append ( $rootElement ) ;
350
+
351
+ $compile ( element ) ( $rootScope ) ;
352
+ $rootScope . $digest ( ) ;
335
353
expect ( $animate . reflows ) . toBe ( 0 ) ;
354
+
355
+ $rootScope . exp = true ;
356
+ $rootScope . items = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ] ;
357
+ $rootScope . $digest ( ) ;
358
+
359
+ expect ( $animate . reflows ) . toBe ( 1 ) ;
336
360
} ) ;
337
361
} ) ;
338
362
} ) ;
0 commit comments