From 126665b3fd760f894e9169d9519001daeced137e Mon Sep 17 00:00:00 2001 From: spalger Date: Fri, 28 Feb 2020 11:45:25 -0700 Subject: [PATCH] disable flaky suite (#55953) (cherry picked from commit 0f329f564b9333e86a18a856c570d017852576e9) --- .../lib/request_interceptors/on_post_auth_interceptor.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.test.ts b/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.test.ts index 92be88b91c652..3d07cba9c53c5 100644 --- a/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.test.ts +++ b/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.test.ts @@ -30,7 +30,8 @@ import { Feature } from '../../../../features/server'; import { spacesConfig } from '../__fixtures__'; import { securityMock } from '../../../../security/server/mocks'; -describe('onPostAuthInterceptor', () => { +// FLAKY: https://github.com/elastic/kibana/issues/55953 +describe.skip('onPostAuthInterceptor', () => { let root: ReturnType; jest.setTimeout(30000);