summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts
blob: e623475fd784d37ff8f8f45c1de67f854f8eb55f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { FilesystemsPageHelper } from './filesystems.po';

describe('File Systems page', () => {
  const filesystems = new FilesystemsPageHelper();

  beforeEach(() => {
    cy.login();
    Cypress.Cookies.preserveOnce('token');
    filesystems.navigateTo();
  });

  describe('breadcrumb test', () => {
    it('should open and show breadcrumb', () => {
      filesystems.expectBreadcrumbText('File Systems');
    });
  });
});