79140876

Date: 2024-10-30 11:27:22
Score: 1
Natty:
Report link

Late to the party, but you could do this:

const link = getByRole('link');

link.addEventListener('click', (e) => {
    e.preventDefault();
});

await fireEvent.click(link);
            
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kluverp