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

Commit 604318e

Browse files
authored
Merge pull request #273 from ukalifon/cancel_cypress_wait
Cancel waiting for installation in e2e scripts
2 parents 19aa679 + 6e34c0b commit 604318e

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

cypress/integration-qe/e2e-enterClusterSpecs.spec.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe('Run install', () => {
100100
startClusterInstallation();
101101
});
102102

103-
it('wait for cluster installation...', () => {
104-
waitForClusterInstallation();
105-
});
103+
// it('wait for cluster installation...', () => {
104+
// waitForClusterInstallation();
105+
// });
106106
});

cypress/integration/shared.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,11 @@ export const startClusterInstallation = () => {
180180
expect($elem).to.be.enabled;
181181
});
182182
cy.get('button[name="install"]').click();
183-
// wait for the progress description to say "Installing"
184-
cy.contains('div.pf-c-progress__description', 'Installing', {
185-
timeout: INSTALL_PREPARATION_TIMEOUT,
186-
});
183+
// wait for the progress description to say "Installing" [temporarily comented out because
184+
// there is no div.pf-c-progress__description any more...]
185+
// cy.contains('div.pf-c-progress__description', 'Installing', {
186+
// timeout: INSTALL_PREPARATION_TIMEOUT,
187+
// });
187188
};
188189

189190
export const waitForClusterInstallation = () => {

0 commit comments

Comments
 (0)