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.
This commit is contained in:
Brendan O'Handley 2023-04-24 10:28:57 -04:00 committed by GitHub
parent fd434cab58
commit c5ea3cd7e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,11 +30,6 @@ e2e.scenario({
cy.contains(queryText).should('be.visible'); cy.contains(queryText).should('be.visible');
cy.get('body').click();
e2e.components.Alert.alertV2('error').should('not.be.visible'); e2e.components.Alert.alertV2('error').should('not.be.visible');
cy.contains('label', 'Builder').click();
cy.get('[data-testid="operations.0.wrapper"]').should('be.visible');
}, },
}); });