From 5c422a8d2494cccbc91920cc214a44e0948c2400 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Thu, 29 Jun 2023 17:31:12 +0100 Subject: [PATCH] skip flaky suite (#159368, #159369) --- x-pack/test/functional/apps/infra/hosts_view.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/infra/hosts_view.ts b/x-pack/test/functional/apps/infra/hosts_view.ts index c57944470fcac..ffb7e09099916 100644 --- a/x-pack/test/functional/apps/infra/hosts_view.ts +++ b/x-pack/test/functional/apps/infra/hosts_view.ts @@ -245,7 +245,9 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { }); }); - describe('#Single host Flyout', () => { + // FLAKY: https://github.com/elastic/kibana/issues/159368 + // FLAKY: https://github.com/elastic/kibana/issues/159369 + describe.skip('#Single host Flyout', () => { before(async () => { await setHostViewEnabled(true); await pageObjects.common.navigateToApp(HOSTS_VIEW_PATH);