Is AppComponent
an standalone component? If yes, your beforeEach
block should not declare the component, but rather just import it:
await TestBed.configureTestingModule({
imports: [
AppComponent
],
}).compileComponents();
Please share the code of your AppComponent
.