summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/support/e2e.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/pybind/mgr/dashboard/frontend/cypress/support/e2e.ts')
-rw-r--r--src/pybind/mgr/dashboard/frontend/cypress/support/e2e.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/pybind/mgr/dashboard/frontend/cypress/support/e2e.ts b/src/pybind/mgr/dashboard/frontend/cypress/support/e2e.ts
new file mode 100644
index 000000000..4db2c6a49
--- /dev/null
+++ b/src/pybind/mgr/dashboard/frontend/cypress/support/e2e.ts
@@ -0,0 +1,19 @@
+import '@applitools/eyes-cypress/commands';
+import 'cypress-axe';
+
+import './commands';
+
+afterEach(() => {
+ cy.visit('#/403');
+});
+
+Cypress.on('uncaught:exception', (err: Error) => {
+ if (
+ err.message.includes('ResizeObserver loop limit exceeded') ||
+ err.message.includes('api/prometheus/rules') ||
+ err.message.includes('NG0100: ExpressionChangedAfterItHasBeenCheckedError')
+ ) {
+ return false;
+ }
+ return true;
+});