Skip to content

Commit

Permalink
Restrict test to 2.7 and 2.8 for now
Browse files Browse the repository at this point in the history
Signed-off-by: Satyajit Bulage <[email protected]>
  • Loading branch information
sbulage committed Jul 2, 2024
1 parent fea5932 commit 0fae936
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/cypress/e2e/unit_tests/p1_fleet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,9 @@ if (/\/2\.9/.test(Cypress.env('rancher_version'))) {
)
});

// Perform this test only if rancher_version does not contain "/2.9"
// Re-iterate this test cases once 2.9.0 released.
if (!/\/2\.7/.test(Cypress.env('rancher_version'))) {
describe('Test Self-Healing on IMMUTABLE resources when correctDrift is enabled', { tags: '@p1'}, () => {
const correctDriftTestData: testData[] = [
{ qase_id: 80,
Expand Down Expand Up @@ -456,3 +459,4 @@ if (/\/2\.9/.test(Cypress.env('rancher_version'))) {
}
)
});
}

0 comments on commit 0fae936

Please sign in to comment.