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 8a4ab57 commit 41da2abCopy full SHA for 41da2ab
code/core/src/manager/components/sidebar/Menu.stories.tsx
@@ -79,8 +79,9 @@ export const Expanded: Story = {
79
},
80
play: async ({ canvasElement }) => {
81
const canvas = within(canvasElement);
82
+ // This story can have significant loading time.
83
await new Promise((res) => {
- setTimeout(res, 500);
84
+ setTimeout(res, 1000);
85
});
86
const menuButton = await canvas.findByRole('switch');
87
await userEvent.click(menuButton);
0 commit comments