nomoreyesterday
Results
2
comments of
nomoreyesterday
@DragosMoro you can use pointer-events-none like this hope this help 
``` export const EmptySubmit: Story = { play: async ({ canvasElement }) => { const canvas = within(canvasElement); const SubmitButton = canvas.getByRole('button', { name: /submit/i }); await expect(SubmitButton).toBeInTheDocument(); await fireEvent.click(SubmitButton)...