From f23068279f6ec00039f3ffeb5575f5f60ef224a0 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Wed, 14 Feb 2024 21:07:51 +0000 Subject: [PATCH] skip flaky suite (#176945) --- .../cypress/e2e/investigations/timelines/data_providers.cy.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/data_providers.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/data_providers.cy.ts index 08af050c7e1c5..09597c80691a5 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/data_providers.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/data_providers.cy.ts @@ -29,7 +29,8 @@ import { import { getTimeline } from '../../../objects/timeline'; import { hostsUrl } from '../../../urls/navigation'; -describe('Timeline data providers', { tags: ['@ess', '@serverless'] }, () => { +// FLAKY: https://github.com/elastic/kibana/issues/176945 +describe.skip('Timeline data providers', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { login(); visitWithTimeRange(hostsUrl('allHosts'));