From a667c16e8c870efbcc432a650a4aba88558342d1 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Wed, 11 Oct 2023 18:39:34 +0100 Subject: [PATCH] skip flaky suite (#167405) --- test/functional/apps/discover/group1/_shared_links.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/functional/apps/discover/group1/_shared_links.ts b/test/functional/apps/discover/group1/_shared_links.ts index 589901d99fe8..e8f79ea1b427 100644 --- a/test/functional/apps/discover/group1/_shared_links.ts +++ b/test/functional/apps/discover/group1/_shared_links.ts @@ -144,7 +144,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); }); - describe('shared links with state in sessionStorage', async () => { + // FLAKY: https://github.com/elastic/kibana/issues/167405 + describe.skip('shared links with state in sessionStorage', async () => { let teardown: () => Promise; before(async function () { teardown = await setup({ storeStateInSessionStorage: true });