From a71e22f051a4ded6493bfd8af70423865e8286a7 Mon Sep 17 00:00:00 2001 From: spalger Date: Thu, 21 May 2020 02:59:26 -0700 Subject: [PATCH] skip flaky suite (#66869) (cherry picked from commit 6ad8c9189479119f37e92d51adfcedbb8a4bf207) --- x-pack/test/functional/apps/uptime/certificates.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/uptime/certificates.ts b/x-pack/test/functional/apps/uptime/certificates.ts index 4a10955637844a..cfd489bd05f3c8 100644 --- a/x-pack/test/functional/apps/uptime/certificates.ts +++ b/x-pack/test/functional/apps/uptime/certificates.ts @@ -14,7 +14,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { const es = getService('es'); - describe('certificates', function() { + // FLAKY: https://github.com/elastic/kibana/issues/66869 + describe.skip('certificates', function() { beforeEach(async () => { await uptime.goToRoot(true); await makeCheck({ es, tls: true });