]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts
63f59916f9966e291fb1215c1b44c76dc64b81fc
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / filesystems / filesystems.e2e-spec.ts
1 import { FilesystemsPageHelper } from './filesystems.po';
2
3 describe('Filesystems page', () => {
4 const filesystems = new FilesystemsPageHelper();
5
6 beforeEach(() => {
7 cy.login();
8 filesystems.navigateTo();
9 });
10
11 describe('breadcrumb test', () => {
12 it('should open and show breadcrumb', () => {
13 filesystems.expectBreadcrumbText('Filesystems');
14 });
15 });
16 });