]> git.proxmox.com Git - ceph.git/blob - 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
1 import { FilesystemsPageHelper } from './filesystems.po';
2
3 describe('File Systems page', () => {
4 const filesystems = new FilesystemsPageHelper();
5
6 beforeEach(() => {
7 cy.login();
8 Cypress.Cookies.preserveOnce('token');
9 filesystems.navigateTo();
10 });
11
12 describe('breadcrumb test', () => {
13 it('should open and show breadcrumb', () => {
14 filesystems.expectBreadcrumbText('File Systems');
15 });
16 });
17 });