When running Karma to test my Angular4 application, I get this error Found the synthetic property @enterAnimation. Please include either \"BrowserAnimationsModule\" o
Found the synthetic property @enterAnimation. Please include either \"BrowserAnimationsModule\" o
I found the solution. I just needed to import in app.component.spec.ts the same import
app.component.spec.ts
// animation module import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; ... @NgModule({ imports: [... BrowserAnimationsModule, ... ],