diff --git a/components/popover/stories/popover.stories.js b/components/popover/stories/popover.stories.js index 0f21879a506..d8f3b51f09c 100644 --- a/components/popover/stories/popover.stories.js +++ b/components/popover/stories/popover.stories.js @@ -166,11 +166,12 @@ const ChromaticTipPlacementVariants = (args) => html` content: [`${optionDescription()}`], })} `)} - +
${SourcelessTemplate({ ...args, position: option, + isOpen: true, })}
@@ -190,7 +191,7 @@ export const WithTip = (args) => html` `; WithTip.play = async ({ canvasElement }) => { const canvas = within(canvasElement); - await userEvent.click(canvas.getByRole("button")); + window.isChromatic() ? null : await userEvent.click(canvas.getByRole("button")); }; WithTip.args = { withTip: true,