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 1155318 commit f9331e0Copy full SHA for f9331e0
stories/allrecipes.stories.tsx
@@ -115,11 +115,11 @@ export const SignUpPasskey: Story = {
115
},
116
play: async ({ canvasElement }) => {
117
// Assigns canvas to the component root element
118
- // const canvas = within(canvasElement);
119
- // const switcher = await canvas.findByText("CONTINUE WITH PASSKEY");
120
- // await new Promise((res) => setTimeout(res, 100));
121
- // canvasElement;
122
- // await userEvent.click(switcher, { delay: 200 });
+ const canvas = within(canvasElement);
+ const switcher = await canvas.findByText("CONTINUE WITH PASSKEY");
+ await new Promise((res) => setTimeout(res, 100));
+ canvasElement;
+ await userEvent.click(switcher, { delay: 200 });
123
124
};
125
0 commit comments