]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts
import ceph pacific 16.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / filesystems / filesystems.e2e-spec.ts
CommitLineData
e306af50
TL
1import { FilesystemsPageHelper } from './filesystems.po';
2
b3b6e05e 3describe('File Systems page', () => {
e306af50
TL
4 const filesystems = new FilesystemsPageHelper();
5
6 beforeEach(() => {
7 cy.login();
adb31ebb 8 Cypress.Cookies.preserveOnce('token');
e306af50
TL
9 filesystems.navigateTo();
10 });
11
12 describe('breadcrumb test', () => {
13 it('should open and show breadcrumb', () => {
b3b6e05e 14 filesystems.expectBreadcrumbText('File Systems');
e306af50
TL
15 });
16 });
17});