From 83d321b59da437c0493760b2d264d30e06807474 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Tue, 1 Oct 2024 16:42:09 -0500 Subject: [PATCH] skip failing test suite (#188133) --- .../public/components/case_form_fields/custom_fields.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/cases/public/components/case_form_fields/custom_fields.test.tsx b/x-pack/plugins/cases/public/components/case_form_fields/custom_fields.test.tsx index 74ac6e612cbc2..f11e5826ca91c 100644 --- a/x-pack/plugins/cases/public/components/case_form_fields/custom_fields.test.tsx +++ b/x-pack/plugins/cases/public/components/case_form_fields/custom_fields.test.tsx @@ -15,7 +15,8 @@ import { FormTestComponent } from '../../common/test_utils'; import { customFieldsConfigurationMock } from '../../containers/mock'; import { CustomFields } from './custom_fields'; -describe('CustomFields', () => { +// Failing: See https://github.com/elastic/kibana/issues/188133 +describe.skip('CustomFields', () => { let appMockRender: AppMockRenderer; const onSubmit = jest.fn();