Skip to content

Instantly share code, notes, and snippets.

@tidusia
Created November 30, 2023 13:28
Show Gist options
  • Save tidusia/cb97fb0d311324e4631fe85de429fc3c to your computer and use it in GitHub Desktop.
Save tidusia/cb97fb0d311324e4631fe85de429fc3c to your computer and use it in GitHub Desktop.
play: async ({ canvasElement, args }) => {
const canvas = within(canvasElement);
const user = userEvent.setup({ delay: 50 });
await user.click(canvas.getByText("Click me"));
await waitFor(() => expect(args.onClick).toHaveBeenCalledTimes(1));
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment