我想Observable
用 jasmine-marble 测试测试一个,但不幸的是我不知道如何触发更改检测ngIf
,这应该呈现组件。
这是我的课程的简化版本:
export class MyComponent implements OnInit {
data$: Observable<{data: any[]}>;
constructor(private baseService: BaseService) { }
ngOnInit(): void {
this.data$ = this.baseService.get(endpoint);
}
}
还有我的html文件:
<custom-component *ngIf="data$ | async as value" [data]="value.data">
...
</custom-component>
这是我当前的测试,失败了:
it ('should display custom component', fakeAsync(() => {
const expected = cold('a|', {a: {data: [{id: 1}]}});
baseServiceStub.get.and.returnValue(expected);
component.ngOnInit();
fixture.detectChanges();
tick();
expect(component.data$).toBeObservable(expected); // this passes and the observable also holds the correct value
expect(baseService.get).toHaveBeenCalledWith(endpoint); // this passes aswell
component.data$.subscribe(val => {
console.log(val); // here I can log the correct value of the observable ( {data: [{id:1}]})
});
expect(fixture.debugElement.query(By.css('custom-component'))).not.toBeNull(); // this fails
}));
不幸的是我得到的都是这个
Error: Expected null not to be null.
服务或可观察对象本身没有问题,但在我看来,由于某种原因,DOM 不会触发使用异步管道来渲染组件的更改检测。
PS:当我使用时,getTestScheduler().flush()
我得到了错误Can't subscribe to undefined
。