在Angular 9中,有一些情况下使用Karma和Jasmine测试ViewChild可能会出现问题。这通常是因为在测试环境中,组件的生命周期可能不同于实际应用中的生命周期。以下是一些可能的解决方法:
it('should get the child component', fakeAsync(() => {
const fixture = TestBed.createComponent(ParentComponent);
fixture.detectChanges();
tick();
const childComponent = fixture.componentInstance.childComponent;
expect(childComponent).toBeTruthy();
}));
it('should get the child component', async(() => {
const fixture = TestBed.createComponent(ParentComponent);
fixture.detectChanges();
fixture.whenStable().then(() => {
const childComponent = fixture.componentInstance.childComponent;
expect(childComponent).toBeTruthy();
});
}));
export class ParentComponent implements AfterViewInit {
@ViewChild(ChildComponent)
childComponent: ChildComponent;
ngAfterViewInit() {
console.log(this.childComponent);
}
}
it('should get the child component', () => {
const fixture = TestBed.createComponent(ParentComponent);
fixture.detectChanges();
const childComponent = fixture.componentInstance.childComponent;
spyOnProperty(fixture.componentInstance, 'childComponent').and.returnValue(childComponent);
expect(childComponent).toBeTruthy();
});
这些是一些常见的解决方法,可以帮助您在Angular 9中使用Karma和Jasmine测试ViewChild时解决问题。根据您的具体情况,您可能需要根据实际需求进行适当的调整。
上一篇:Angular 9的交互式坐标系