https://cypress.io logo
That is something from the application code, not r...
# e2e-testing
b
That is something from the application code, not related to your Cypress tests. You can either have it fixed or use
Cypress.on('uncaught:exception')
to ignore that app error.
Copy code
Cypress.on('uncaught:exception', (err, runnable) => {
  // returning false here prevents Cypress from
  // failing the test
  if(err.message.includes('sql.addListener is not a function')) {
    return false
  }
})