Skip to content

Commit

Permalink
skip flaky tests. #89052, #113418, #115304
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Oct 17, 2021
1 parent 845bcf8 commit 06e66ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,8 @@ export default ({ getService }: FtrProviderContext) => {
expect(ips).to.eql([[], ['127.0.0.8', '127.0.0.9', '127.0.0.10']]);
});

it('will return 1 result if we have a list that includes all ips', async () => {
// FLAKY https://github.com/elastic/kibana/issues/89052
it.skip('will return 1 result if we have a list that includes all ips', async () => {
await importFile(
supertest,
'ip',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,8 @@ export default ({ getService }: FtrProviderContext) => {
expect(hits).to.eql([[], ['word eight', 'word nine', 'word ten']]);
});

it('will return only the empty array for results if we have a list that includes all keyword', async () => {
// FLAKY https://github.com/elastic/kibana/issues/115304
it.skip('will return only the empty array for results if we have a list that includes all keyword', async () => {
await importFile(
supertest,
'keyword',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,8 @@ export default ({ getService }: FtrProviderContext) => {
expect(hits).to.eql([[], ['word eight', 'word nine', 'word ten']]);
});

it('will return only the empty array for results if we have a list that includes all text', async () => {
// FLAKY https://github.com/elastic/kibana/issues/113418
it.skip('will return only the empty array for results if we have a list that includes all text', async () => {
await importFile(
supertest,
'text',
Expand Down

0 comments on commit 06e66ca

Please sign in to comment.