matheusmurta
1/23/2020 - 12:36 PM

ngx-translate 11 The pipe 'translate' could not be found SOLUTION

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();
  }));