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

后端 未结 8 1407
生来不讨喜
生来不讨喜 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 18:39

    I found the solution. I just needed to import in app.component.spec.ts the same import

     // animation module
            import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; 
        ...
    @NgModule({
        imports: [...
            BrowserAnimationsModule,
            ...
          ],
    

提交回复
热议问题