From 5007bbf3e7a075a218a345b6c0d6205c38263a1c Mon Sep 17 00:00:00 2001 From: spalger Date: Sat, 7 Dec 2019 08:10:52 -0700 Subject: [PATCH] skip flaky suite (#48721) --- x-pack/test/reporting/functional/reporting.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/x-pack/test/reporting/functional/reporting.js b/x-pack/test/reporting/functional/reporting.js index 0c528a80b4334..b8a0789f1bff3 100644 --- a/x-pack/test/reporting/functional/reporting.js +++ b/x-pack/test/reporting/functional/reporting.js @@ -21,7 +21,9 @@ export default function ({ getService, getPageObjects }) { const PageObjects = getPageObjects(['reporting', 'common', 'dashboard', 'header', 'discover', 'visualize']); const log = getService('log'); - describe('Reporting', () => { + // FLAKY: https://github.com/elastic/kibana/issues/45499 + // FLAKY: https://github.com/elastic/kibana/issues/48721 + describe.skip('Reporting', () => { before('initialize tests', async () => { await PageObjects.reporting.initTests(); @@ -73,8 +75,7 @@ export default function ({ getService, getPageObjects }) { await expectDisabledGenerateReportButton(); }); - // FLAKY: https://github.com/elastic/kibana/issues/45499 - it.skip('becomes available when saved', async () => { + it('becomes available when saved', async () => { await PageObjects.dashboard.saveDashboard('mypdfdash'); await PageObjects.reporting.openPdfReportingPanel(); await expectEnabledGenerateReportButton();