fix chromatic 1 (#11510)

This commit is contained in:
Weiko
2025-04-10 15:44:12 +02:00
committed by GitHub
parent 63a165666a
commit 35c6cb4f4a

View File

@ -44,6 +44,8 @@ export type Story = StoryObj<typeof CreateWorkspace>;
export const Default: Story = {
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
await canvas.findByText('Create your workspace');
await canvas.findByText('Create your workspace', undefined, {
timeout: 3000,
});
},
};