Found the synthetic property @enterAnimation. Please include either “BrowserAnimationsModule” or “NoopAnimationsModule” in your application. Angular4

后端 未结 8 1336
生来不讨喜
生来不讨喜 2020-12-30 18:21

When running Karma to test my Angular4 application, I get this error Found the synthetic property @enterAnimation. Please include either \"BrowserAnimationsModule\" o

8条回答
  •  醉梦人生
    2020-12-30 19:00

    This should work.

    1- Import BrowserAnimationsModule in app.module.ts

    import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
    

    2 - Add to imports in app.module.ts

    imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    routing,
    Ng2SmartTableModule,
    TreeModule,
    BrowserAnimationsModule]
    

提交回复
热议问题