diff --git a/packages/grafana-ui/src/components/Combobox/Combobox.test.tsx b/packages/grafana-ui/src/components/Combobox/Combobox.test.tsx index b91cde4a618..2263618d601 100644 --- a/packages/grafana-ui/src/components/Combobox/Combobox.test.tsx +++ b/packages/grafana-ui/src/components/Combobox/Combobox.test.tsx @@ -37,7 +37,7 @@ describe('Combobox', () => { render(); const input = screen.getByRole('combobox'); - userEvent.click(input); + await userEvent.click(input); const item = await screen.findByRole('option', { name: 'Option 1' }); await userEvent.click(item);