3

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

4

1 回答 1

0

只需使用:

expect(input.value).toEqual('1234');
于 2022-01-09T14:05:16.647 回答