From 42d0c6e975a0d4b5a98f8ac94e8eb3d2c4962e32 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Wed, 31 Jul 2024 02:11:41 +0100 Subject: [PATCH] skip flaky suite (#189293) --- .../cases/public/components/templates/template_tags.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/cases/public/components/templates/template_tags.test.tsx b/x-pack/plugins/cases/public/components/templates/template_tags.test.tsx index 6a99321bb7727..ed94b28d80d5e 100644 --- a/x-pack/plugins/cases/public/components/templates/template_tags.test.tsx +++ b/x-pack/plugins/cases/public/components/templates/template_tags.test.tsx @@ -15,7 +15,8 @@ import { FormTestComponent } from '../../common/test_utils'; import { TemplateTags } from './template_tags'; import { showEuiComboBoxOptions } from '@elastic/eui/lib/test/rtl'; -describe('TemplateTags', () => { +// FLAKY: https://github.com/elastic/kibana/issues/189293 +describe.skip('TemplateTags', () => { let appMockRenderer: AppMockRenderer; const onSubmit = jest.fn(); const formDefaultValue = { templateTags: [] };