From 3c0426de8b22b725e592a3582baa44a00b139890 Mon Sep 17 00:00:00 2001 From: spalger Date: Mon, 15 Jul 2019 08:34:45 -0700 Subject: [PATCH] skip flaky suite (#41088) (#41087) (cherry picked from commit f0e7b9e5b97723a4dfd23daf9b2bccb7c036450c) --- test/functional/apps/dashboard/dashboard_filtering.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/functional/apps/dashboard/dashboard_filtering.js b/test/functional/apps/dashboard/dashboard_filtering.js index e586443e4909d..76ddf0e8043fb 100644 --- a/test/functional/apps/dashboard/dashboard_filtering.js +++ b/test/functional/apps/dashboard/dashboard_filtering.js @@ -34,7 +34,9 @@ export default function ({ getService, getPageObjects }) { const dashboardPanelActions = getService('dashboardPanelActions'); const PageObjects = getPageObjects(['dashboard', 'header', 'visualize']); - describe('dashboard filtering', async function () { + // FLAKY: https://github.com/elastic/kibana/issues/41088 + // FLAKY: https://github.com/elastic/kibana/issues/41087 + describe.skip('dashboard filtering', async function () { this.tags('smoke'); before(async () => { await PageObjects.dashboard.gotoDashboardLandingPage();