disable flaky tests

This commit is contained in:
spalger 2019-01-11 23:58:48 -08:00
parent f75b2a7f9c
commit b03e63b5de

View file

@ -113,7 +113,8 @@ export default function ({ getService, getPageObjects }) {
expect(pieData).to.eql(expectedTableData);
});
it('should apply correct filter on other bucket', async () => {
// FLAKY: https://github.com/elastic/kibana/issues/25955
it.skip('should apply correct filter on other bucket', async () => {
const expectedTableData = [ 'Missing', 'osx' ];
await PageObjects.header.waitUntilLoadingHasFinished();
@ -125,7 +126,8 @@ export default function ({ getService, getPageObjects }) {
await filterBar.removeFilter('machine.os.raw');
});
it('should apply correct filter on other bucket by clicking on a legend', async () => {
// FLAKY: https://github.com/elastic/kibana/issues/26323
it.skip('should apply correct filter on other bucket by clicking on a legend', async () => {
const expectedTableData = [ 'Missing', 'osx' ];
await PageObjects.header.waitUntilLoadingHasFinished();