Вы можете предоставить фиктивный компонент в массиве объявлений в модуле тестирования Testing,
@Component({selector: 'jqxTreeGridComponent-selector', template: ''})
class jqxTreeGridComponent{
clearSelection(){}
}
describe('', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ComponentDetailsComponent , jqxTreeGridComponent],
}).compileComponents();
}));
})
}
Чтобы узнать больше о компонентах-заглушках, прочитайте здесь в документации.