Skip to content

Commit

Permalink
🐞 fix: ignore IOMm error
Browse files Browse the repository at this point in the history
  • Loading branch information
duncdrum committed Nov 23, 2023
1 parent d6e3c01 commit fef0e99
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cypress/support/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,10 @@ Cypress.on('uncaught:exception', (err, runnable) => {
if (err.message.includes('parentElement')) {
return false
}
})
})

Cypress.on('uncaught:exception', (err, runnable) => {
if (err.message.includes('IOMm is not defined')) {
return false
}
})

0 comments on commit fef0e99

Please sign in to comment.