From c414d9f4d72a076af80ba6fe74048760045b420c Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Tue, 17 Dec 2024 04:51:00 +0000 Subject: [PATCH] skip flaky suite (#204465) --- .../fleet/sections/agents/components/tags.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/components/tags.test.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/components/tags.test.tsx index a7d70a3b4e7ef..02884d8528c65 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/components/tags.test.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/components/tags.test.tsx @@ -10,7 +10,8 @@ import { render, screen, fireEvent, waitFor } from '@testing-library/react'; import { Tags } from './tags'; -describe('Tags', () => { +// FLAKY: https://github.com/elastic/kibana/issues/204465 +describe.skip('Tags', () => { describe('when list is short', () => { it('renders a comma-separated list of tags', () => { const tags = ['tag1', 'tag2'];