From 976088dd04c6fd3b907fd2bb92af306e7d77ce4c 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 30626d9d42576..bbbb022cf3d06 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 });