From 55b0d535ff98723113fd72efe9f66365e7fa33d4 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Wed, 8 Sep 2021 09:30:53 -0500 Subject: [PATCH] skip flaky test. #111496 --- .../security_and_spaces/tests/alerting/get.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/alerting_api_integration/security_and_spaces/tests/alerting/get.ts b/x-pack/test/alerting_api_integration/security_and_spaces/tests/alerting/get.ts index 040055720934..5925f2bcc812 100644 --- a/x-pack/test/alerting_api_integration/security_and_spaces/tests/alerting/get.ts +++ b/x-pack/test/alerting_api_integration/security_and_spaces/tests/alerting/get.ts @@ -21,7 +21,8 @@ export default function createGetTests({ getService }: FtrProviderContext) { const supertest = getService('supertest'); const supertestWithoutAuth = getService('supertestWithoutAuth'); - describe('get', () => { + // FLAKY https://github.com/elastic/kibana/issues/111496 + describe.skip('get', () => { const objectRemover = new ObjectRemover(supertest); afterEach(() => objectRemover.removeAll());