feat: use find to query element on play function

This commit is contained in:
Ítalo Teixeira 2022-04-23 00:30:47 +02:00
parent b26d8f4cb2
commit 88cdcffd2c

View File

@ -23,6 +23,6 @@ export const LoggedOut = Template.bind({});
export const LoggedIn = Template.bind({});
LoggedIn.play = async ({ canvasElement }) => {
const canvas = within(canvasElement);
const loginButton = await canvas.getByRole('button', { name: /Log in/i });
const loginButton = await canvas.findByRole('button', { name: /Log in/i });
await userEvent.click(loginButton);
};