Skip to content

Commit

Permalink
skip edit & delete tests until resolution of rancher#9940
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonas Berhe authored and Yonas Berhe committed Oct 19, 2023
1 parent 765ea43 commit b3c367c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cypress/e2e/tests/pages/explorer/cluster-tools.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ describe('Cluster Tools', { tags: '@adminUser' }, () => {
});
});

it('can edit chart successfully', () => {
it.skip('can edit chart successfully', () => {
// Note: this test fails due to https://github.com/rancher/dashboard/issues/9940
// skipping this test until issue is resolved
clusterTools.goTo();
clusterTools.waitForPage();
clusterTools.editChart(0);
Expand All @@ -59,7 +61,9 @@ describe('Cluster Tools', { tags: '@adminUser' }, () => {
cy.contains('Connected');
});

it('can uninstall chart successfully', () => {
it.skip('can uninstall chart successfully', () => {
// Note: this test fails due to https://github.com/rancher/dashboard/issues/9940
// skipping this test until issue is resolved
clusterTools.goTo();
clusterTools.waitForPage();
clusterTools.deleteChart(0);
Expand Down

0 comments on commit b3c367c

Please sign in to comment.