]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/a11y/dashboard.e2e-spec.ts
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / a11y / dashboard.e2e-spec.ts
diff --git a/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/a11y/dashboard.e2e-spec.ts b/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/a11y/dashboard.e2e-spec.ts
deleted file mode 100644 (file)
index 4feea0d..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-import { DashboardPageHelper } from '../ui/dashboard.po';
-
-describe('Dashboard Main Page', { retries: 0 }, () => {
-  const dashboard = new DashboardPageHelper();
-
-  beforeEach(() => {
-    cy.login();
-    Cypress.Cookies.preserveOnce('token');
-    dashboard.navigateTo();
-  });
-
-  describe('Dashboard accessibility', () => {
-    it('should have no accessibility violations', () => {
-      cy.injectAxe();
-      cy.checkAccessibility(
-        {
-          exclude: [['.cd-navbar-main']]
-        },
-        {
-          rules: {
-            'page-has-heading-one': { enabled: false }
-          }
-        }
-      );
-    });
-  });
-});