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();