From c3e76e706ff9dd6984a648bc96fa81257030c958 Mon Sep 17 00:00:00 2001 From: Nandini Chandra Date: Tue, 15 Jun 2021 18:47:07 -0500 Subject: [PATCH] Add migration type step during plan creation --- qe-tests/cypress/integration/models/plan.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qe-tests/cypress/integration/models/plan.ts b/qe-tests/cypress/integration/models/plan.ts index e466c5e6d..099eafc64 100644 --- a/qe-tests/cypress/integration/models/plan.ts +++ b/qe-tests/cypress/integration/models/plan.ts @@ -122,7 +122,9 @@ export class Plan { next(); } - protected finalReviewStep(): void { + protected migrationTypeAndReview(): void { + //Default migration type is cold migration + next(); clickByText(button, finish); } @@ -178,7 +180,7 @@ export class Plan { this.vmSelectionStep(planData); this.networkMappingStep(planData); this.storageMappingStep(planData); - this.finalReviewStep(); + this.migrationTypeAndReview(); } delete(planData: PlanData): void {