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 5fccbf8 commit 6683ba4Copy full SHA for 6683ba4
src/components/fields/ComboBox/ComboBox.stories.tsx
@@ -360,3 +360,10 @@ export const ItemsWithDescriptions: StoryFn<CubeComboBoxProps<any>> = (
360
</ComboBox>
361
);
362
ItemsWithDescriptions.args = {};
363
+ItemsWithDescriptions.play = async ({ canvasElement }) => {
364
+ const { getByTestId } = within(canvasElement);
365
+
366
+ const trigger = getByTestId('ComboBoxTrigger');
367
368
+ await userEvent.click(trigger);
369
+};
0 commit comments