Cypress error

Uncaught exception from application under test

The app under test threw an unhandled JS error, and Cypress fails the test by default when that happens.

Why this happens

How to fix it

  1. If it's a real app bug, fix it. Cypress caught something worth catching
  2. If it's known, unrelated noise, ignore it as narrowly as possible: `Cypress.on('uncaught:exception', () => false)`, scoped to that one test rather than globally