From 9e8ff96f2511706c0946f5e1534060e1c6dc607b Mon Sep 17 00:00:00 2001 From: "Devin W. Hurley" Date: Wed, 4 Dec 2024 14:21:00 -0500 Subject: [PATCH] [Security Solutoin] [Detections] skip flaky eql sequence test (#202977) ## Summary skips flakey test: https://github.com/elastic/kibana/issues/202945 (cherry picked from commit 3bb6bab8e76a0214a07ca5ce835dfaee9e5085cf) --- .../trial_license_complete_tier/eql_alert_suppression.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/eql/trial_license_complete_tier/eql_alert_suppression.ts b/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/eql/trial_license_complete_tier/eql_alert_suppression.ts index d933b1b7274d5..f8331a2d6bf31 100644 --- a/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/eql/trial_license_complete_tier/eql_alert_suppression.ts +++ b/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/eql/trial_license_complete_tier/eql_alert_suppression.ts @@ -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(); @@ -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();