summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/support/index.ts
blob: f2307131aa6268a70b563d6922b1c152ab4e8527 (plain)
1
2
3
4
5
6
7
8
9
10
11
import '@applitools/eyes-cypress/commands';

import './commands';

afterEach(() => {
  cy.visit('#/403');
});

Cypress.on('uncaught:exception', (err: Error) => {
  return !err.message.includes('ResizeObserver loop limit exceeded');
});