From 827cdfcfe64079b4cff56dcc2a2a6cc37d5250c0 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Wed, 14 Feb 2024 16:07:04 +0000 Subject: [PATCH] skip flaky suite (#162530) --- .../integration_tests/release_action.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/integration_tests/release_action.test.tsx b/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/integration_tests/release_action.test.tsx index d1a45611a1ac1..a2a42d4325f04 100644 --- a/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/integration_tests/release_action.test.tsx +++ b/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/integration_tests/release_action.test.tsx @@ -24,7 +24,8 @@ import { UPGRADE_AGENT_FOR_RESPONDER } from '../../../../../common/translations' jest.mock('../../../../../common/experimental_features_service'); -describe('When using the release action from response actions console', () => { +// FLAKY: https://github.com/elastic/kibana/issues/162530 +describe.skip('When using the release action from response actions console', () => { let render: ( capabilities?: EndpointCapabilities[] ) => Promise>;