]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/navigation.e2e-spec.ts
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / ui / navigation.e2e-spec.ts
diff --git a/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/navigation.e2e-spec.ts b/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/navigation.e2e-spec.ts
deleted file mode 100644 (file)
index fee2d2d..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-import { NavigationPageHelper } from './navigation.po';
-
-describe('Shared pages', () => {
-  const shared = new NavigationPageHelper();
-
-  beforeEach(() => {
-    cy.login();
-    Cypress.Cookies.preserveOnce('token');
-    shared.navigateTo();
-  });
-
-  it('should display the vertical menu by default', () => {
-    shared.getVerticalMenu().should('not.have.class', 'active');
-  });
-
-  it('should hide the vertical menu', () => {
-    shared.getMenuToggler().click();
-    shared.getVerticalMenu().should('have.class', 'active');
-  });
-
-  it('should navigate to the correct page', () => {
-    shared.checkNavigations(shared.navigations);
-  });
-});