Files
supabase/studio/tests
..
2022-09-21 11:41:07 +08:00
2022-01-14 18:35:52 +08:00
2022-07-26 10:51:10 +08:00
2022-09-21 11:41:07 +08:00
2022-09-20 12:54:01 -02:30

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')