From 48ea8b37db36879737c668d6aa4419039186f7d0 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Fri, 15 Nov 2024 18:54:39 +0000 Subject: [PATCH] skip flaky suite (#194208) --- .../server/integration_tests/removed_types.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/task_manager/server/integration_tests/removed_types.test.ts b/x-pack/plugins/task_manager/server/integration_tests/removed_types.test.ts index 835cf799b60f2..390c426e9c69f 100644 --- a/x-pack/plugins/task_manager/server/integration_tests/removed_types.test.ts +++ b/x-pack/plugins/task_manager/server/integration_tests/removed_types.test.ts @@ -28,7 +28,8 @@ jest.mock('../monitoring/workload_statistics', () => { }; }); -describe('unrecognized task types', () => { +// FLAKY: https://github.com/elastic/kibana/issues/194208 +describe.skip('unrecognized task types', () => { let esServer: TestElasticsearchUtils; let kibanaServer: TestKibanaUtils; let taskManagerPlugin: TaskManagerStartContract;