Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

[RFR] Add migration type step during plan creation #652

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions qe-tests/cypress/integration/models/plan.ts
Expand Up @@ -122,7 +122,9 @@ export class Plan {
next();
}

protected finalReviewStep(): void {
protected migrationTypeAndReview(): void {
//Default migration type is cold migration
next();
clickByText(button, finish);
}

Expand Down Expand Up @@ -178,7 +180,7 @@ export class Plan {
this.vmSelectionStep(planData);
this.networkMappingStep(planData);
this.storageMappingStep(planData);
this.finalReviewStep();
this.migrationTypeAndReview();
}

delete(planData: PlanData): void {
Expand Down