]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/e2e/filesystems/filesystems.e2e-spec.ts
import ceph 14.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / e2e / filesystems / filesystems.e2e-spec.ts
1 import { Helper } from '../helper.po';
2 import { FilesystemsPage } from './filesystems.po';
3
4 describe('Filesystems page', () => {
5 let page: FilesystemsPage;
6
7 beforeAll(() => {
8 page = new FilesystemsPage();
9 });
10
11 afterEach(() => {
12 Helper.checkConsole();
13 });
14
15 describe('breadcrumb test', () => {
16 beforeAll(() => {
17 page.navigateTo();
18 });
19
20 it('should open and show breadcrumb', () => {
21 Helper.waitTextToBePresent(Helper.getBreadcrumb(), 'Filesystems');
22 });
23 });
24 });