From 7e52c239e9bf391dff1306301b5d9da488f29b8e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 6 Jan 2026 14:56:20 +0100 Subject: [PATCH] Bug 40816: Ignore 'ResizeObserver loop limit exceeded' I have NO idea how to fix this error. I don't see it on the Koha UI, neither using Cypress UI. It seems safe for now to ignore this error (The internet says so). Signed-off-by: David Cook --- t/cypress/support/e2e.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/t/cypress/support/e2e.js b/t/cypress/support/e2e.js index 287616198fb..5eda9ee80c6 100644 --- a/t/cypress/support/e2e.js +++ b/t/cypress/support/e2e.js @@ -68,6 +68,13 @@ Cypress.on("uncaught:exception", (err, runnable) => { return true; }); +Cypress.on("uncaught:exception", err => { + // Ignoring 'ResizeObserver loop limit exceeded' message from DataTables + if (err.message.match(/ResizeObserver loop limit exceeded/)) { + return false; + } +}); + function get_fallback_login_value(param) { var env_var = param == "username" ? "KOHA_USER" : "KOHA_PASS"; -- 2.39.5