From f3867de504c90e420ffa756bf3e56fea0f331462 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Fri, 14 Apr 2023 11:33:16 +0530 Subject: [PATCH] mgr/dashboard: fix cephadm e2e expression changed error tried to fix this issue from the daemon component sometime ago several times but it didn't work. So force ignoring the error Fixes: https://tracker.ceph.com/issues/59444 Signed-off-by: Nizamudeen A (cherry picked from commit f7e29e5ab85fabcf2524656bb456a2955fa8608d) --- src/pybind/mgr/dashboard/frontend/cypress/support/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/cypress/support/index.ts b/src/pybind/mgr/dashboard/frontend/cypress/support/index.ts index 16099815a7ddd..4db2c6a4926a9 100644 --- a/src/pybind/mgr/dashboard/frontend/cypress/support/index.ts +++ b/src/pybind/mgr/dashboard/frontend/cypress/support/index.ts @@ -10,7 +10,8 @@ afterEach(() => { Cypress.on('uncaught:exception', (err: Error) => { if ( err.message.includes('ResizeObserver loop limit exceeded') || - err.message.includes('api/prometheus/rules') + err.message.includes('api/prometheus/rules') || + err.message.includes('NG0100: ExpressionChangedAfterItHasBeenCheckedError') ) { return false; } -- 2.39.5