Skip to content

Commit 5bfdc36

Browse files
committed
Fix console testing
1 parent 77e2072 commit 5bfdc36

File tree

4 files changed

+246
-251
lines changed

4 files changed

+246
-251
lines changed

cypress/e2e/2_cluster-membership.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('Cluster Membership', () => {
1111
cy.contains('Status');
1212
cy.contains('Physical address');
1313
cy.contains('Version');
14-
cy.contains('16.0');
14+
cy.contains('16.1');
1515
cy.get('[data-cy="downloadReportLink"]').should('exist');
1616
//@TODO Uncomment and fix this part after ISPN-16672 is fixed
1717
// cy.get('[data-cy="downloadReportLink"]').click();

cypress/e2e/8_rolling-upgrades-detection.cy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('Rolling Upgrades', () => {
3232
cy.contains("2 members in use");
3333
cy.contains("Rolling Upgrade in Progress — Some features may be temporarily unavailable");
3434
cy.contains("16.0.0.Dev08");
35-
cy.contains("16.0.2-SNAPSHOT");
35+
cy.contains('16.1.0-SNAPSHOT');
3636

3737
// Restarting the docker container with same version and waiting for 20seconds to server to come up, reloading the page
3838
cy.exec('bash restart_server_with_latest_version.sh > ~/log.log', 120000).then((result) => {
@@ -45,7 +45,7 @@ describe('Rolling Upgrades', () => {
4545
cy.contains("2 members in use");
4646
cy.contains("Upgrade Complete — Please clear your browser cache and reconnect to see the latest console version.");
4747
cy.contains("16.0.0.Dev08").should('not.exist');
48-
cy.contains("16.0.2-SNAPSHOT");
48+
cy.contains('16.1.0-SNAPSHOT');
4949
})
5050
});
5151

0 commit comments

Comments
 (0)