Skip to content

Commit 3826d82

Browse files
chore(eui): add a VRT test for combobox many options
1 parent bd168c4 commit 3826d82

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

packages/eui/src/components/combo_box/combo_box.stories.tsx

+16
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,22 @@ export const NestedOptionsGroups: Story = {
197197
render: (args) => <StatefulComboBox {...args} />,
198198
};
199199

200+
/**
201+
* VRT only
202+
*/
203+
204+
export const IconsAndManyOptionsSelected: Story = {
205+
args: {
206+
singleSelection: false,
207+
selectedOptions: options,
208+
},
209+
render: (args) => <StatefulComboBox {...args} />,
210+
};
211+
212+
/**
213+
* Helpers
214+
*/
215+
200216
const StatefulComboBox = ({
201217
singleSelection,
202218
onCreateOption,

0 commit comments

Comments
 (0)