Files
supabase/studio/tests
Ziinc 03ef7e6959 logs/fix: temp fix for refresh counter, increase query interval (#17738)
fix: temp fix for refresh counter, increase query interval, prevent querying on error.
2023-09-27 12:27:52 +08:00
..
2023-09-20 15:42:47 +08:00
2023-08-02 16:51:47 +08:00

UI Testing Notes

<Popover> vs <Dropdown>

When simulating clicks on these components, do the following:

// for Popovers
import userEvent from '@testing-library/user-event'
userEvent.click('Hello world')

// for Dropdowns
import clickDropdown from 'tests/helpers'
clickDropdown('Hello world')