We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e6cc5 commit cfdfd34Copy full SHA for cfdfd34
packages/ui/src/components/NumberInputV2/__tests__/index.test.tsx
@@ -145,7 +145,7 @@ describe('NumberInputV2', () => {
145
await userEvent.clear(input)
146
await userEvent.type(input, '5')
147
148
- plusButton.click()
+ await userEvent.click(plusButton)
149
await waitFor(() => expect(input.value).toBe('10'))
150
})
151
@@ -157,7 +157,7 @@ describe('NumberInputV2', () => {
157
158
await userEvent.type(input, '15')
159
160
- minusButton.click()
+ await userEvent.click(minusButton)
161
162
163
0 commit comments