From 1d5656d5571c28763b6f71f095a8e875c499483d Mon Sep 17 00:00:00 2001 From: arbulu89 Date: Thu, 16 May 2024 14:36:15 +0200 Subject: [PATCH] Remove unused commands --- test/e2e/cypress/e2e/clusters_overview.cy.js | 4 ++-- test/e2e/cypress/support/e2e.js | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test/e2e/cypress/e2e/clusters_overview.cy.js b/test/e2e/cypress/e2e/clusters_overview.cy.js index 1263d4e56e..93664fb720 100644 --- a/test/e2e/cypress/e2e/clusters_overview.cy.js +++ b/test/e2e/cypress/e2e/clusters_overview.cy.js @@ -81,7 +81,7 @@ context('Clusters Overview', () => { clusterIdByName(healthyClusterScenario.clusterName), healthyClusterScenario.checks ); - cy.setMockRunnerExpectedResult(healthyClusterScenario.result); + // wip: set expected results cy.requestChecksExecution( clusterIdByName(healthyClusterScenario.clusterName) ); @@ -90,7 +90,7 @@ context('Clusters Overview', () => { clusterIdByName(unhealthyClusterScenario.clusterName), healthyClusterScenario.checks ); - cy.setMockRunnerExpectedResult(unhealthyClusterScenario.result); + // wip: set expected results cy.requestChecksExecution( clusterIdByName(unhealthyClusterScenario.clusterName) ); diff --git a/test/e2e/cypress/support/e2e.js b/test/e2e/cypress/support/e2e.js index b708e84f74..8552e480aa 100644 --- a/test/e2e/cypress/support/e2e.js +++ b/test/e2e/cypress/support/e2e.js @@ -26,6 +26,5 @@ before(() => { if (!Cypress.env('REAL_CLUSTER_TESTS')) { cy.loadScenario('healthy-27-node-SAP-cluster'); } - cy.acceptEula(); cy.initiateSession(); });