Skip to content

Commit

Permalink
skip flaky tests (#172260)
Browse files Browse the repository at this point in the history
## Summary
Skipping several flaky tests

// FLAKY: #172251
// FLAKY: #172253
// FLAKY: #172254
// FLAKY: #172255
  • Loading branch information
delanni authored Nov 30, 2023
1 parent c4be9d6 commit 37be03c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ describe('Detection ES|QL rules, creation', { tags: ['@ess'] }, () => {
const rule = getEsqlRule();
const expectedNumberOfRules = 1;

describe('creation', () => {
// FLAKY: https://github.com/elastic/kibana/issues/172251
describe.skip('creation', () => {
beforeEach(() => {
deleteAlertsAndRules();
login();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ const rule = getEsqlRule();

const expectedValidEsqlQuery = 'from auditbeat* | stats count(event.category) by event.category';

describe('Detection ES|QL rules, edit', { tags: ['@ess'] }, () => {
// FLAKY: https://github.com/elastic/kibana/issues/172253
// FLAKY: https://github.com/elastic/kibana/issues/172254
// FLAKY: https://github.com/elastic/kibana/issues/172255
describe.skip('Detection ES|QL rules, edit', { tags: ['@ess'] }, () => {
beforeEach(() => {
login();
deleteAlertsAndRules();
Expand Down

0 comments on commit 37be03c

Please sign in to comment.