From 6ceb0695dd55e8c06bd7260d29c133dcf08ab34a Mon Sep 17 00:00:00 2001 From: Tyler Smalley Date: Tue, 6 Oct 2020 12:45:16 -0700 Subject: [PATCH] skip flaky suite (#79248) --- .../spaces_only/tests/alerting/execution_status.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/execution_status.ts b/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/execution_status.ts index 16a37bdf77662..e19406c4c8452 100644 --- a/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/execution_status.ts +++ b/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/execution_status.ts @@ -19,7 +19,8 @@ import { FtrProviderContext } from '../../../common/ftr_provider_context'; export default function executionStatusAlertTests({ getService }: FtrProviderContext) { const supertest = getService('supertest'); - describe('executionStatus', () => { + // Failing: See https://github.com/elastic/kibana/issues/79248 + describe.skip('executionStatus', () => { const objectRemover = new ObjectRemover(supertest); after(async () => await objectRemover.removeAll());