我正在尝试使用@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
空白返回。我刚刚开始使用观众。执行此测试的正确方法是什么?