disable flaky dashboard filtering test (#20425)

This commit is contained in:
Nathan Reese 2018-07-03 15:17:23 -06:00 committed by GitHub
parent 27a0ef3fb8
commit 3fb2561686
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();