[apps/dashboard] skip part of filtering tests on FF (#43047) (#43052)

This commit is contained in:
Dmitry Lemeshko 2019-08-09 22:47:35 +02:00 committed by GitHub
parent daebdbfe11
commit ffb539bdce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,7 +169,10 @@ export default function ({ getService, getPageObjects }) {
});
});
describe('disabling a filter unfilters the data on', () => {
describe('disabling a filter unfilters the data on', function () {
// Flaky test
// https://github.com/elastic/kibana/issues/41087
this.tags('skipFirefox');
before(async () => {
await filterBar.toggleFilterEnabled('bytes');
await PageObjects.header.waitUntilLoadingHasFinished();