From 8c885e9c3fd39afa619fab57782888378154183f Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Wed, 24 Jul 2024 18:00:37 +0100 Subject: [PATCH] skip flaky suite (#188450) --- .../cases/public/components/custom_fields/form_fields.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/cases/public/components/custom_fields/form_fields.test.tsx b/x-pack/plugins/cases/public/components/custom_fields/form_fields.test.tsx index 51f5f6dbddea6..fc21bdeba5185 100644 --- a/x-pack/plugins/cases/public/components/custom_fields/form_fields.test.tsx +++ b/x-pack/plugins/cases/public/components/custom_fields/form_fields.test.tsx @@ -15,7 +15,8 @@ import { FormTestComponent } from '../../common/test_utils'; import { CustomFieldTypes } from '../../../common/types/domain'; import { FormFields } from './form_fields'; -describe('FormFields ', () => { +// FLAKY: https://github.com/elastic/kibana/issues/188450 +describe.skip('FormFields ', () => { let appMockRender: AppMockRenderer; const onSubmit = jest.fn();