1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

fix test URLInput

This commit is contained in:
EnzoVezzaro 2023-01-19 07:41:02 -04:00
parent a9cf3bdc0a
commit e8bad8d832

View File

@ -35,7 +35,7 @@ describe('@shared/FormInput/InputElement/URLInput', () => {
render(<URLInput {...props} />)
expect(screen.getByRole('button')).toBeDisabled()
fireEvent.change(screen.getByRole('textbox'), {
fireEvent.change(screen.getByRole('button'), {
target: { value: 'https://google.com' }
})
})