diff --git a/x-pack/test_serverless/api_integration/test_suites/common/alerting/rules.ts b/x-pack/test_serverless/api_integration/test_suites/common/alerting/rules.ts index cfb133c17caf4..441dc06cab829 100644 --- a/x-pack/test_serverless/api_integration/test_suites/common/alerting/rules.ts +++ b/x-pack/test_serverless/api_integration/test_suites/common/alerting/rules.ts @@ -35,8 +35,7 @@ export default function ({ getService }: FtrProviderContext) { const esClient = getService('es'); const esDeleteAllIndices = getService('esDeleteAllIndices'); - // Failing: See https://github.com/elastic/kibana/issues/167665 - describe.skip('Alerting rules', () => { + describe('Alerting rules', () => { const RULE_TYPE_ID = '.es-query'; const ALERT_ACTION_INDEX = 'alert-action-es-query'; let actionId: string; @@ -53,6 +52,7 @@ export default function ({ getService }: FtrProviderContext) { .set('x-elastic-internal-origin', 'foo'); await esClient.deleteByQuery({ index: '.kibana-event-log-*', + conflicts: 'proceed', query: { term: { 'kibana.alert.rule.consumer': 'alerts' } }, }); await esDeleteAllIndices([ALERT_ACTION_INDEX]);