From 11eec7800b02cf7fdc052167296f978ca2256afe Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Mon, 29 Jan 2024 22:02:04 +0000 Subject: [PATCH] skip flaky suite (#175570) --- .../cases/public/components/create/owner_selector.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/cases/public/components/create/owner_selector.test.tsx b/x-pack/plugins/cases/public/components/create/owner_selector.test.tsx index cd9515edbd28c..94ce019498078 100644 --- a/x-pack/plugins/cases/public/components/create/owner_selector.test.tsx +++ b/x-pack/plugins/cases/public/components/create/owner_selector.test.tsx @@ -18,7 +18,8 @@ import type { FormProps } from './schema'; import { schema } from './schema'; import { waitForComponentToPaint } from '../../common/test_utils'; -describe('Case Owner Selection', () => { +// FLAKY: https://github.com/elastic/kibana/issues/175570 +describe.skip('Case Owner Selection', () => { let globalForm: FormHook; const MockHookWrapperComponent: React.FC = ({ children }) => {