You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compileComponents () is asynchronous. So, we must use async () method like this:
BeforeEach(async(()=>{TestBed.configureTestingModule({Declarations: [BannerComponent],// declare the test component}).compileComponents();// compile template and css}));
not
BeforeEach(()=>{TestBed.configureTestingModule({Declarations: [BannerComponent],// declare the test component})TestBed.compileComponents();// compile template and css});