I have a top level component AppComponent and in it\'s template property it renders the element on the page. (
AppComponent
template
You need to add the ChildComponent to your module:
ChildComponent
beforeEach(() => { TestBed.configureTestingModule({ declarations: [AppComponent, ChildComponent] }); });