diff --git a/cypress/support/e2e.js b/cypress/support/e2e.js index 9090cbde8f8f4e10f46d20ab5d831a0f36b2556d..af59c2925fcfb20c3c34d1bf638be633254c5ebb 100644 --- a/cypress/support/e2e.js +++ b/cypress/support/e2e.js @@ -18,3 +18,8 @@ // Alternatively you can use CommonJS syntax: // require('./commands') + +Cypress.on('uncaught:exception', (err, runnable) => { + // Do not fail the test. + return false +})