From beea080e0fc9b11692e73faa33b86f5f60a190ae Mon Sep 17 00:00:00 2001 From: spalger Date: Mon, 19 Sep 2022 08:52:54 -0700 Subject: [PATCH] skip flaky just suite (#140888) --- .../view/host_isolation_exceptions_list.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/view/host_isolation_exceptions_list.test.tsx b/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/view/host_isolation_exceptions_list.test.tsx index 8fb3f683e6eb5..2f0fc55979090 100644 --- a/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/view/host_isolation_exceptions_list.test.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/view/host_isolation_exceptions_list.test.tsx @@ -22,7 +22,8 @@ import { getFirstCard } from '../../../components/artifact_list_page/mocks'; jest.mock('../../../../common/components/user_privileges'); const useUserPrivilegesMock = _useUserPrivileges as jest.Mock; -describe('When on the host isolation exceptions page', () => { +// FLAKY: https://github.com/elastic/kibana/issues/140888 +describe.skip('When on the host isolation exceptions page', () => { let render: () => ReturnType; let renderResult: ReturnType; let history: AppContextTestRender['history'];