]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
bd0470b86700a0c71fc67c6150efa0ec5de7d2a2
[ceph.git] /
1 import { CreateClusterWelcomePageHelper } from '../cluster/cluster-welcome-page.po';
2
3 describe('Create cluster page', () => {
4   const createCluster = new CreateClusterWelcomePageHelper();
5
6   beforeEach(() => {
7     cy.login();
8     Cypress.Cookies.preserveOnce('token');
9     createCluster.navigateTo();
10   });
11
12   it('should fail to create cluster', () => {
13     createCluster.createCluster();
14   });
15
16   it('should skip to dashboard landing page', () => {
17     createCluster.doSkip();
18   });
19 });