У меня есть несколько тестовых случаев в файле .spec.ts.Первый тестовый случай всегда завершается неудачно с сообщением об ошибке Ошибка: Тайм-аут - асинхронный обратный вызов не был вызван в течение тайм-аута, указанного в jasmine.DEFAULT_TIMEOUT_INTERVAL.
Может кто-нибудь помочь мне, пожалуйста?
Фрагмент кода:
beforeEach(async(() => {
jasmine.DEFAULT_TIMEOUT_INTERVAL = 2147483647;
TestBed.configureTestingModule({
imports: [AppModule, JobModule],
providers: [ {provide: APP_BASE_HREF, useValue: '/'} ]
}).compileComponents();
fixture = TestBed.createComponent(JobListComponent);
component = fixture.componentInstance;
debugElement = fixture.debugElement;
translateService = TestBed.get(TranslateService);
jobService = TestBed.get(JobService);
route = TestBed.get(ActivatedRoute);
_locale = TestBed.get(LOCALE_ID);
}));
it('should create the job list component', async(() => { //always this gets failed
expect(component).toBeTruthy();
}));
it('should create the job list component 1', async(() => {
expect(component).toBeTruthy();
}));