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
});
So, this file must be fixed.
compileComponents () is asynchronous. So, we must use async () method like this:
not
So, this file must be fixed.