Skip to content

Commit

Permalink
[Security Solutoin] [Detections] skip flaky eql sequence test (elasti…
Browse files Browse the repository at this point in the history
…c#202977)

## Summary

skips flakey test: elastic#202945
  • Loading branch information
dhurley14 authored and Samiul-TheSoccerFan committed Dec 10, 2024
1 parent ad88809 commit b88ded1
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2982,7 +2982,8 @@ export default ({ getService }: FtrProviderContext) => {
expect(suppressionEnd).toBeGreaterThan(new Date(secondTimestamp).getDate());
});

it('does not suppress alerts outside of duration', async () => {
// Skipped here: https://github.com/elastic/kibana/issues/202945
it.skip('does not suppress alerts outside of duration', async () => {
const id = uuidv4();
// this timestamp is 1 minute in the past
const firstTimestamp = new Date(Date.now() - 5000).toISOString();
Expand Down Expand Up @@ -3170,7 +3171,8 @@ export default ({ getService }: FtrProviderContext) => {
});
});

it('does not suppress alerts outside of duration when query with 3 sequences', async () => {
// Skipped here: https://github.com/elastic/kibana/issues/202945
it.skip('does not suppress alerts outside of duration when query with 3 sequences', async () => {
const id = uuidv4();
const dateNow = Date.now();
const timestampSequenceEvent1 = new Date(dateNow - 5000).toISOString();
Expand Down

0 comments on commit b88ded1

Please sign in to comment.