]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/cypress/support/index.ts
buildsys: change download over to reef release
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / support / index.ts
1 import '@applitools/eyes-cypress/commands';
2 import 'cypress-axe';
3
4 import './commands';
5
6 afterEach(() => {
7 cy.visit('#/403');
8 });
9
10 Cypress.on('uncaught:exception', (err: Error) => {
11 if (
12 err.message.includes('ResizeObserver loop limit exceeded') ||
13 err.message.includes('api/prometheus/rules')
14 ) {
15 return false;
16 }
17 return true;
18 });