Skip to content
This repository was archived by the owner on Apr 30, 2023. It is now read-only.

Commit f5a351f

Browse files
authored
Merge pull request #370 from achuzhoy/timeout_save_settings
Increasing timeout for cluster creation page.
2 parents 8e99b2f + 5d4da01 commit f5a351f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: cypress/integration/shared.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ export const createCluster = (cy, clusterName, pullSecret) => {
8989

9090
// Cluster configuration
9191
// cy.get('.pf-c-breadcrumb__list > :nth-child(2)').contains(clusterName);
92-
cy.get('#bare-metal-inventory-button-download-discovery-iso').should('be.visible');
92+
cy.get('#bare-metal-inventory-button-download-discovery-iso', { timeout: 10 * 1000 }).should(
93+
'be.visible',
94+
);
9395
cy.get('#form-input-name-field').should('have.value', clusterName);
9496
};
9597

0 commit comments

Comments
 (0)