Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue in checkClusterStatus with RM 2.10 #20

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,15 @@ export function burgerMenuToggle() {
* @remarks : Checked in the Home page
* @param clusterName : Name of the cluster
* @param clusterStatus : Expected status of the cluster
* @param rancherVersion : Rancher version
* @param timeout : Timeout for the check
*/
export function checkClusterStatus(clusterName, clusterStatus, timeout) {
cy.contains('Home')
.click();
// The new cluster must be in active state
cy.contains(new RegExp(clusterStatus+'.*'+clusterName), {timeout: timeout});
export function checkClusterStatus(clusterName, clusterStatus, rancherVersion, timeout) {
cy.contains('Home')
.click();
(rancherVersion == '2.10') ?
cy.contains(clusterStatus+clusterName, {timeout: timeout}) :
cy.contains(clusterStatus+' '+clusterName, {timeout: timeout});
};

/**
Expand Down