@@ -38,6 +38,7 @@ import {getLView} from '@angular/core/src/render3/state';
3838import { ngDevModeResetPerfCounters } from '@angular/core/src/util/ng_dev_mode' ;
3939import { fakeAsync , flushMicrotasks , TestBed } from '@angular/core/testing' ;
4040import { By } from '@angular/platform-browser' ;
41+ import { NoopAnimationsModule } from '@angular/platform-browser/animations' ;
4142import { expectPerfCounters } from '@angular/private/testing' ;
4243
4344describe ( 'acceptance integration tests' , ( ) => {
@@ -2889,6 +2890,7 @@ describe('acceptance integration tests', () => {
28892890
28902891 TestBed . configureTestingModule ( {
28912892 declarations : [ Cmp , AnimationComp ] ,
2893+ imports : [ NoopAnimationsModule ] ,
28922894 providers : [ { provide : AnimationDriver , useClass : MockAnimationDriver } ] ,
28932895 } ) ;
28942896 const fixture = TestBed . createComponent ( Cmp ) ;
@@ -2979,6 +2981,7 @@ describe('acceptance integration tests', () => {
29792981
29802982 TestBed . configureTestingModule ( {
29812983 declarations : [ Cmp , InnerComp ] ,
2984+ imports : [ NoopAnimationsModule ] ,
29822985 providers : [ { provide : AnimationDriver , useClass : MockAnimationDriver } ] ,
29832986 } ) ;
29842987 const fixture = TestBed . createComponent ( Cmp ) ;
0 commit comments