Fixed storybook tests (#3719)

Fix storybook tests
This commit is contained in:
Lucas Bordeau
2024-01-31 12:34:06 +01:00
committed by GitHub
parent 7d898f89a9
commit 397de955be
6 changed files with 12 additions and 12 deletions

View File

@ -31,6 +31,6 @@ export type Story = StoryObj<typeof NotFound>;
export const Default: Story = {
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
await canvas.findByText('Page not found');
await canvas.findByText('Off the beaten path');
},
};