]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/e2e/cluster/crush-map.e2e-spec.ts
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / e2e / cluster / crush-map.e2e-spec.ts
1 import { Helper } from '../helper.po';
2 import { CrushMapPage } from './crush-map.po';
3
4 describe('CRUSH map page', () => {
5 let page: CrushMapPage;
6
7 beforeAll(() => {
8 page = new CrushMapPage();
9 });
10
11 afterEach(() => {
12 Helper.checkConsole();
13 });
14
15 it('should open and show breadcrumb', () => {
16 page.navigateTo();
17 expect(Helper.getBreadcrumbText()).toEqual('CRUSH map');
18 });
19 });