1import { ChildComponent } from 'childComponent';
2
3...
4let component: ThisComponet;
5let childComponent: ChildComponent;
6.....
7declarations: [ChildComponent],
8.....
9component = fixture.componentInstance;
10// to get a handle on the child component, you can select it By.directive
11childComponent = fixture.debugElement.query(By.directive(ChildComponent)).componentInstance;
12// should have access to your childComponent public properties and methods now
13