]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/e2e/block/iscsi.e2e-spec.ts
import ceph 14.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / e2e / block / iscsi.e2e-spec.ts
CommitLineData
11fdf7f2
TL
1import { Helper } from '../helper.po';
2import { IscsiPage } from './iscsi.po';
3
4describe('Iscsi Page', () => {
5 let page: IscsiPage;
6
7 beforeAll(() => {
8 page = new IscsiPage();
9 });
10
11 afterEach(() => {
12 Helper.checkConsole();
13 });
14
15 it('should open and show breadcrumb', () => {
16 page.navigateTo();
eafe8130 17 Helper.waitTextToBePresent(Helper.getBreadcrumb(), 'Overview');
11fdf7f2
TL
18 });
19});