From 43c6fbfddd04876a7f3892ef03dc0d757cfd1874 Mon Sep 17 00:00:00 2001 From: spalger Date: Wed, 8 Jul 2020 14:50:23 -0700 Subject: [PATCH] skip flaky suite (#69632) --- .../basic/tests/find_statuses.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/find_statuses.ts b/x-pack/test/detection_engine_api_integration/basic/tests/find_statuses.ts index cc6fa53939f60e..c88b094879ac8b 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/find_statuses.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/find_statuses.ts @@ -22,7 +22,8 @@ export default ({ getService }: FtrProviderContext): void => { const supertest = getService('supertest'); const es = getService('es'); - describe('find_statuses', () => { + // FLAKY: https://github.com/elastic/kibana/issues/69632 + describe.skip('find_statuses', () => { beforeEach(async () => { await createSignalsIndex(supertest); });