From 3bf2de25243d57280f580478177f8789f62c3c1d Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Tue, 26 Nov 2024 15:31:18 +0000 Subject: [PATCH] skip flaky suite (#201210) --- .../enrollment_instructions/root_privileges_callout.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/fleet/public/components/enrollment_instructions/root_privileges_callout.test.tsx b/x-pack/plugins/fleet/public/components/enrollment_instructions/root_privileges_callout.test.tsx index ae7e62773cb63..86cbd1a1a5a10 100644 --- a/x-pack/plugins/fleet/public/components/enrollment_instructions/root_privileges_callout.test.tsx +++ b/x-pack/plugins/fleet/public/components/enrollment_instructions/root_privileges_callout.test.tsx @@ -13,7 +13,8 @@ import { createFleetTestRendererMock } from '../../mock'; import { RootPrivilegesCallout } from './root_privileges_callout'; -describe('RootPrivilegesCallout', () => { +// FLAKY: https://github.com/elastic/kibana/issues/201210 +describe.skip('RootPrivilegesCallout', () => { function render(rootIntegrations?: Array<{ name: string; title: string }>) { cleanup(); const renderer = createFleetTestRendererMock();