From c081102c13eb8caf3c08674d564f912a6f94928c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Sat, 12 Aug 2023 09:27:08 +0200 Subject: [PATCH] ci(cypress): Catch resize observer loop limit (2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- cypress/support/e2e.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/support/e2e.js b/cypress/support/e2e.js index 358fb9e21..07348c5c9 100644 --- a/cypress/support/e2e.js +++ b/cypress/support/e2e.js @@ -17,7 +17,7 @@ import './commands.js' Cypress.on('uncaught:exception', (err) => { - return !err.message.includes('ResizeObserver loop limit exceeded'), + return !err.message.includes('ResizeObserver loop limit exceeded') }) // Alternatively you can use CommonJS syntax: