e2e.ts 317 B

123456789101112
  1. import '@testing-library/cypress/add-commands'
  2. Cypress.on('uncaught:exception', (err, runnable) => {
  3. if (err.message.includes('ResizeObserver')) {
  4. // spurious error from PDF preview
  5. return false
  6. }
  7. if (err.message.includes('rcube_webmail')) {
  8. // spurious error from mailtrap
  9. return false
  10. }
  11. })