]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/orchestrator/workflow/01-create-cluster-welcome-page.e2e-spec.ts
import ceph 16.2.7
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / orchestrator / workflow / 01-create-cluster-welcome-page.e2e-spec.ts
CommitLineData
a4b75251
TL
1import { CreateClusterWizardHelper } from 'cypress/integration/cluster/create-cluster.po';
2
3describe('Create cluster page', () => {
4 const createCluster = new CreateClusterWizardHelper();
5
6 beforeEach(() => {
7 cy.login();
8 Cypress.Cookies.preserveOnce('token');
9 createCluster.navigateTo();
10 });
11
12 it('should open the wizard when Expand Cluster is clicked', () => {
13 createCluster.createCluster();
14 });
15
16 it('should skip to dashboard landing page when Skip is clicked', () => {
17 createCluster.doSkip();
18 });
19});