我正在尝试用@ngneat/spectator
6.1.1版测试我的指令
it('should allow all numbers', () => {
spectator = createDirective('<input appNumbersOnly type="number">')
const input = spectator.query('input') as HTMLInputElement
spectator.typeInElement('1234', input)
expect(input.value).toHaveExactText('1234')
})
这总是在input.value
为空时返回。我刚开始接触观众。执行此测试的正确方法是什么?
只需使用:
expect(input.value).toEqual('1234');