bitter-fountain-36713
07/04/2022, 5:40 PMCypress.on('uncaught:exception') to ignore that app error.
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
}
})