diff --git a/cypress/support/index.js b/cypress/support/index.js
index d68db96df2..a9ac34476d 100644
--- a/cypress/support/index.js
+++ b/cypress/support/index.js
@@ -18,3 +18,9 @@ import './commands'
 
 // Alternatively you can use CommonJS syntax:
 // require('./commands')
+
+Cypress.on('uncaught:exception', (err, runnable) => {
+  if (err.message.includes('ResizeObserver loop limit exceeded')) {
+    return false
+  }
+});