From 7f5b9a403141c55b0dba5c8724bb50eac2641b85 Mon Sep 17 00:00:00 2001 From: spalger Date: Fri, 14 Aug 2020 17:29:07 -0700 Subject: [PATCH] skip flaky suite (#75044) (cherry picked from commit d4f52471bfa916602dfed92d12e2aa12b3435d1c) --- .../functional/apps/reporting_management/report_listing.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/reporting_management/report_listing.ts b/x-pack/test/functional/apps/reporting_management/report_listing.ts index d97af7f49059d..ae395fc5914e1 100644 --- a/x-pack/test/functional/apps/reporting_management/report_listing.ts +++ b/x-pack/test/functional/apps/reporting_management/report_listing.ts @@ -29,7 +29,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { const findInstance = getService('find'); const esArchiver = getService('esArchiver'); - describe('Listing of Reports', function () { + // FLAKY: https://github.com/elastic/kibana/issues/75044 + describe.skip('Listing of Reports', function () { before(async () => { await security.testUser.setRoles(['kibana_admin', 'reporting_user']); await esArchiver.load('empty_kibana');