From e404798a1548b42b0de5b8d33d1cb3445dd42ee9 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Mon, 22 Jan 2024 15:54:49 +0000 Subject: [PATCH] skip flaky suite (#112103) --- x-pack/test/functional_execution_context/tests/browser.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional_execution_context/tests/browser.ts b/x-pack/test/functional_execution_context/tests/browser.ts index f7d265316decb..63f575b798b93 100644 --- a/x-pack/test/functional_execution_context/tests/browser.ts +++ b/x-pack/test/functional_execution_context/tests/browser.ts @@ -12,7 +12,8 @@ import { assertLogContains, isExecutionContextLog, readLogFile } from '../test_u export default function ({ getService, getPageObjects }: FtrProviderContext) { const PageObjects = getPageObjects(['common', 'dashboard', 'header', 'home', 'timePicker']); - describe('Browser apps', () => { + // FLAKY: https://github.com/elastic/kibana/issues/112103 + describe.skip('Browser apps', () => { let logs: Ecs[]; const retry = getService('retry');