mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-26 22:40:50 +00:00
53324b0cd2
GitOrigin-RevId: 1260312a0644f3bc60e007a840045974336e264d
6 lines
173 B
JavaScript
6 lines
173 B
JavaScript
Cypress.on('uncaught:exception', err => {
|
|
// don't fail the test for ResizeObserver error messages
|
|
if (err.message.includes('ResizeObserver')) {
|
|
return false
|
|
}
|
|
})
|