From 37d4a5590acc892be5c5214c2a61a29b687ef028 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 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 1c71b624f78dc..ea2ab9e7d1a2d 100644 --- a/x-pack/test/functional/apps/reporting_management/report_listing.ts +++ b/x-pack/test/functional/apps/reporting_management/report_listing.ts @@ -28,7 +28,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { const testSubjects = getService('testSubjects'); 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'); @@ -67,7 +68,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { }); }); - it.skip('Paginates historical reports', async () => { + it('Paginates historical reports', async () => { // wait for first row of page 1 await testSubjects.find('checkboxSelectRow-k9a9xlwl0gpe1457b10rraq3');