We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba10ea commit a68e0eaCopy full SHA for a68e0ea
src/lib/holocene/combobox/combobox.stories.svelte
@@ -96,7 +96,8 @@
96
97
await userEvent.type(combobox, 'Japanese');
98
99
- const menu = canvas.getByRole('listbox');
+ // Wait for the listbox to appear since it may have a transition
100
+ const menu = await canvas.findByRole('listbox');
101
102
expect(menu).toBeInTheDocument();
103
}}
@@ -113,7 +114,8 @@
113
114
115
await userEvent.type(combobox, 'Jerseyan');
116
117
118
119
const noResults = canvas.getByText('No Results');
120
121
0 commit comments