我有一个文本输入,我正在听变化。
我的组件.ts
ngOnInit() {
this.searchInput = new Control();
this.searchInput.valueChanges
.distinctUntilChanged()
.subscribe(newValue => this.search(newValue))
}
search(query) {
// do something to search
}
我的组件.html
<search-box>
<input type="text" [ngFormControl]="searchInput" >
</search-box>
运行应用程序一切正常,但我想对其进行单元测试。
所以这就是我尝试过的
mycomponent.spec.ts
beforeEach(done => {
createComponent().then(fix => {
cmpFixture = fix
mockResponse()
instance = cmpFixture.componentInstance
cmpFixture.detectChanges();
done();
})
})
describe('on searching on the list', () => {
let compiled, input
beforeEach(() => {
cmpFixture.detectChanges();
compiled = cmpFixture.debugElement.nativeElement;
spyOn(instance, 'search').and.callThrough()
input = compiled.querySelector('search-box > input')
input.value = 'fake-search-query'
cmpFixture.detectChanges();
})
it('should call the .search() method', () => {
expect(instance.search).toHaveBeenCalled()
})
})
测试失败,因为.search()
没有调用该方法。
我想我必须以value
另一种方式设置测试以实现更改,但我真的不知道如何。
有人有想法吗?