ngx-translate 11 The pipe 'translate' could not be found SOLUTION
//Just add this on you spec files
import { TranslateModule } from "@ngx-translate/core";
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ EmailMessageComponent ],
imports: [
TranslateModule.forRoot(),
]
})
.compileComponents();
}));