]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/block/iscsi.e2e-spec.ts
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / block / iscsi.e2e-spec.ts
diff --git a/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/block/iscsi.e2e-spec.ts b/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/block/iscsi.e2e-spec.ts
deleted file mode 100644 (file)
index cef4874..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-import { IscsiPageHelper } from './iscsi.po';
-
-describe('Iscsi Page', () => {
-  const iscsi = new IscsiPageHelper();
-
-  beforeEach(() => {
-    cy.login();
-    Cypress.Cookies.preserveOnce('token');
-    iscsi.navigateTo();
-  });
-
-  it('should open and show breadcrumb', () => {
-    iscsi.expectBreadcrumbText('Overview');
-  });
-
-  it('should check that tables are displayed and legends are correct', () => {
-    // Check tables are displayed
-    iscsi.getDataTables().its(0).should('be.visible');
-    iscsi.getDataTables().its(1).should('be.visible');
-
-    // Check that legends are correct
-    iscsi.getLegends().its(0).should('contain.text', 'Gateways');
-    iscsi.getLegends().its(1).should('contain.text', 'Images');
-  });
-});