From d9385d8a76a915babde3aec9d9adbdf5f691d94a Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Tue, 3 Sep 2024 11:44:30 +0100 Subject: [PATCH] add missing await --- packages/grafana-ui/src/components/Combobox/Combobox.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);