Late to the party, but you could do this:
const link = getByRole('link'); link.addEventListener('click', (e) => { e.preventDefault(); }); await fireEvent.click(link);