From 3fb2561686fec4f5b9796f76e2fe6c89c8baacb4 Mon Sep 17 00:00:00 2001 From: Nathan Reese Date: Tue, 3 Jul 2018 15:17:23 -0600 Subject: [PATCH] disable flaky dashboard filtering test (#20425) --- test/functional/apps/dashboard/_dashboard_filtering.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/functional/apps/dashboard/_dashboard_filtering.js b/test/functional/apps/dashboard/_dashboard_filtering.js index a316e1cee9e1..0b23742d38f9 100644 --- a/test/functional/apps/dashboard/_dashboard_filtering.js +++ b/test/functional/apps/dashboard/_dashboard_filtering.js @@ -37,7 +37,10 @@ export default function ({ getService, getPageObjects }) { await PageObjects.dashboard.gotoDashboardLandingPage(); }); - describe('adding a filter that excludes all data', async () => { + // Disabling flaky test + // Failing in PageObjects.dashboard.waitForRenderComplete() with the error + // "tryForTime timeout: Error: Still waiting on more visualizations to finish rendering, expecting: 17, received: 16" + describe.skip('adding a filter that excludes all data', async () => { before(async () => { await PageObjects.dashboard.clickNewDashboard(); await PageObjects.dashboard.setTimepickerInDataRange(); @@ -101,8 +104,8 @@ export default function ({ getService, getPageObjects }) { }); }); - - describe('disabling a filter unfilters the data on', async () => { + // Skipped because it depends on filter applied by disabled test + describe.skip('disabling a filter unfilters the data on', async () => { before(async () => { await testSubjects.click('disableFilter-bytes'); await PageObjects.header.waitUntilLoadingHasFinished();