From 96d269ec061da3202ab52cab8121973f1559a0cb Mon Sep 17 00:00:00 2001 From: Jatin Kathuria Date: Tue, 15 Oct 2024 09:58:36 +0200 Subject: [PATCH] skip esql state test --- .../e2e/investigations/timelines/esql/esql_state.cy.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/esql/esql_state.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/esql/esql_state.cy.ts index e263a87cd1020..0676d3d5dbfb8 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/esql/esql_state.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/esql/esql_state.cy.ts @@ -39,8 +39,6 @@ const esqlQuery = 'from auditbeat-* | limit 5'; const TIMELINE_REQ_WITH_SAVED_SEARCH = 'TIMELINE_REQ_WITH_SAVED_SEARCH'; const TIMELINE_PATCH_REQ = 'TIMELINE_PATCH_REQ'; -const TIMELINE_RESPONSE_SAVED_OBJECT_ID_PATH = - 'response.body.data.persistTimeline.timeline.savedObjectId'; const handleIntercepts = () => { cy.intercept('PATCH', '/api/timeline', (req) => { @@ -55,7 +53,8 @@ const handleIntercepts = () => { }); }; -describe( +// Flaky: https://github.com/elastic/kibana/issues/180755 +describe.skip( 'Timeline Discover ESQL State', { tags: ['@ess'],