From bc20377fa74c6597f633e6f40c2b81060143357d Mon Sep 17 00:00:00 2001 From: Khristinin Nikita Date: Fri, 15 Aug 2025 20:04:18 +0200 Subject: [PATCH] Unskip eql tests, only skip one (#231934) We do have 1 test, which is failing constantly (also locally). We can unskip the whole file, and only keep this failing test skipped (cherry picked from commit d237d27b15967c514d5c112390606dcb5126339b) --- .../trial_license_complete_tier/eql_alert_suppression.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/solutions/security/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/solutions/security/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/eql/trial_license_complete_tier/eql_alert_suppression.ts index 76efa35897e97..0445cd544b046 100644 --- a/x-pack/solutions/security/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/solutions/security/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/eql/trial_license_complete_tier/eql_alert_suppression.ts @@ -73,8 +73,7 @@ export default ({ getService }: FtrProviderContext) => { ) => partition(alerts, (alert) => alert?._source?.['kibana.alert.group.index'] == null); // NOTE: Add to second quality gate after feature is GA - // Failing: See https://github.com/elastic/kibana/issues/202940 - describe.skip('@ess @serverless Alert Suppression for EQL rules', () => { + describe('@ess @serverless Alert Suppression for EQL rules', () => { before(async () => { await esArchiver.load( 'x-pack/solutions/security/test/fixtures/es_archives/security_solution/ecs_compliant' @@ -3180,7 +3179,8 @@ export default ({ getService }: FtrProviderContext) => { }); }); - it('does not suppress alerts outside of duration when query with 3 sequences', async () => { + // Failing: See https://github.com/elastic/kibana/issues/202940 + 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();