From b527939ec2713e85bd77aa9867aa48d134fe0942 Mon Sep 17 00:00:00 2001 From: Alex Szabo Date: Fri, 24 Jan 2025 10:44:35 +0100 Subject: [PATCH] skip failing suite (#207257) --- .../components/files/file_actions_popover_button.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/platform/plugins/shared/cases/public/components/files/file_actions_popover_button.test.tsx b/x-pack/platform/plugins/shared/cases/public/components/files/file_actions_popover_button.test.tsx index e252a29f8c704..b0ee182df4474 100644 --- a/x-pack/platform/plugins/shared/cases/public/components/files/file_actions_popover_button.test.tsx +++ b/x-pack/platform/plugins/shared/cases/public/components/files/file_actions_popover_button.test.tsx @@ -26,7 +26,8 @@ jest.mock('../../containers/use_delete_file_attachment'); const useDeleteFileAttachmentMock = useDeleteFileAttachment as jest.Mock; -describe('FileActionsPopoverButton', () => { +// Failing: See https://github.com/elastic/kibana/issues/207257 +describe.skip('FileActionsPopoverButton', () => { let appMockRender: AppMockRenderer; const mutate = jest.fn();