]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts
import 15.2.4
[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 });