Skip to content

Commit

Permalink
skip flaky tests. #115308, #115313
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Oct 17, 2021
1 parent 658dbf0 commit 053ddb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,8 @@ export default ({ getService }: FtrProviderContext) => {
});

describe('"exists" operator', () => {
it('will return 1 results if matching against keyword for the empty array', async () => {
// FLAKY https://github.com/elastic/kibana/issues/115308
it.skip('will return 1 results if matching against keyword for the empty array', async () => {
const rule = getRuleForSignalTesting(['keyword_as_array']);
const { id } = await createRuleWithExceptionEntries(supertest, rule, [
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ export default ({ getService }: FtrProviderContext) => {
});

describe('"exists" operator', () => {
it('will return 1 results if matching against text for the empty array', async () => {
// FLAKY https://github.com/elastic/kibana/issues/115313
it.skip('will return 1 results if matching against text for the empty array', async () => {
const rule = getRuleForSignalTesting(['text_as_array']);
const { id } = await createRuleWithExceptionEntries(supertest, rule, [
[
Expand Down

0 comments on commit 053ddb1

Please sign in to comment.