mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
disable flaky tests
This commit is contained in:
parent
f75b2a7f9c
commit
b03e63b5de
1 changed files with 4 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue