Skip to content

Commit

Permalink
ci/ui: use unstable instead of latest-dev tag
Browse files Browse the repository at this point in the history
  • Loading branch information
juadk committed Sep 22, 2023
1 parent a2f11a6 commit f8c394e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/cypress/latest/e2e/unit_tests/upgrade.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('Upgrade tests', () => {
.click()
cy.getBySel('os-version-box')
.parents()
.contains('latest')
.contains('unstable')
.click();
}

Expand Down
4 changes: 2 additions & 2 deletions tests/cypress/latest/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Cypress.Commands.add('createMachReg', (
// Will try to improve it in next version
if (utils.isOperatorVersion('staging')) {
// In rare case, we might want to test upgrading from staging to dev
utils.isUpgradeOsChannel('dev') ? cy.contains('Elemental Teal ISO x86_64 (latest)').click(): null;
utils.isUpgradeOsChannel('dev') ? cy.contains('Elemental Teal ISO x86_64 (unstable)').click(): null;
} else {
cy.contains('Elemental Teal ISO x86_64 v1.2.2')
.click();
Expand All @@ -121,7 +121,7 @@ Cypress.Commands.add('createMachReg', (
cy.contains('Elemental Teal ISO x86_64 v1.2.2')
.click();
} else {
cy.contains('Elemental Teal ISO x86_64 (latest)')
cy.contains('Elemental Teal ISO x86_64 (unstable)')
.click();
}
cy.getBySel('build-iso-btn')
Expand Down

0 comments on commit f8c394e

Please sign in to comment.