This commit is contained in:
Jonathan Budzenski 2021-10-16 22:32:21 -05:00
parent 845bcf85c1
commit 06e66ca284
3 changed files with 6 additions and 3 deletions

View file

@ -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',

View file

@ -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',

View file

@ -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',