Files
supabase/studio/tests
Ziinc 80adb8d396 chore: update LogEventChart title to be more intuitive (#9679)
chore: update chart title to be more intuitive
2022-10-24 15:53:17 +02: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')