From 0a03a527e9ff0cf1b6b12ba6b6074f2f034df63a Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Wed, 5 Oct 2022 13:07:56 +0100 Subject: [PATCH] skip flaky suite (#135309) --- .../test/reporting_functional/reporting_and_timeout/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/reporting_functional/reporting_and_timeout/index.ts b/x-pack/test/reporting_functional/reporting_and_timeout/index.ts index 59b2ef546bed1..17f13bf868019 100644 --- a/x-pack/test/reporting_functional/reporting_and_timeout/index.ts +++ b/x-pack/test/reporting_functional/reporting_and_timeout/index.ts @@ -19,7 +19,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const config = getService('config'); const screenshotDir = config.get('screenshots.directory'); - describe('Reporting Functional Tests with forced timeout', function () { + // FLAKY: https://github.com/elastic/kibana/issues/135309 + describe.skip('Reporting Functional Tests with forced timeout', function () { const dashboardTitle = 'Ecom Dashboard Hidden Panel Titles'; const baselineAPng = path.resolve(__dirname, 'fixtures/baseline/warnings_capture_a.png'); const sessionPng = 'warnings_capture_session_a';