From c5ea3cd7e04b0b7b80d462d46e95ec438fd9aad6 Mon Sep 17 00:00:00 2001 From: Brendan O'Handley Date: Mon, 24 Apr 2023 10:28:57 -0400 Subject: [PATCH] Prometheus: remove part of flaky e2e test (#67116) remove elements of flaky e2e test This test only checks 'undo' in the code editor and then checks if the query builder is present. The test is timing out when looking for the query builder. There should be a second test to check if undo works in the query builder so I'm removing the query builder check. I will add an issue to create a test for 'undo' in the query builder. --- e2e/various-suite/query-editor.spec.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/e2e/various-suite/query-editor.spec.ts b/e2e/various-suite/query-editor.spec.ts index 7c73ea39154..525b053216e 100644 --- a/e2e/various-suite/query-editor.spec.ts +++ b/e2e/various-suite/query-editor.spec.ts @@ -30,11 +30,6 @@ e2e.scenario({ cy.contains(queryText).should('be.visible'); - cy.get('body').click(); e2e.components.Alert.alertV2('error').should('not.be.visible'); - - cy.contains('label', 'Builder').click(); - - cy.get('[data-testid="operations.0.wrapper"]').should('be.visible'); }, });