diff --git a/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/general_logic/basic_license_essentials_tier/timestamps.ts b/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/general_logic/basic_license_essentials_tier/timestamps.ts index cb2ba34a67c45..53fcd558f146d 100644 --- a/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/general_logic/basic_license_essentials_tier/timestamps.ts +++ b/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/general_logic/basic_license_essentials_tier/timestamps.ts @@ -44,7 +44,7 @@ export default ({ getService }: FtrProviderContext) => { * the "signal.original_time" field, ensuring that timestamp overrides operate, and ensuring that * partial errors happen correctly */ - describe('@ess @serverless @serverlessQA timestamp tests', () => { + describe.only('@ess @serverless @serverlessQA timestamp tests', () => { describe('alerts generated from events with a timestamp in seconds is converted correctly into the forced ISO8601 format when copying', () => { beforeEach(async () => { await createAlertsIndex(supertest, log); @@ -300,6 +300,7 @@ export default ({ getService }: FtrProviderContext) => { const alerts = alertsResponse.hits.hits.map((hit) => hit._source); const alertsOrderedByEventId = orderBy(alerts, 'alert.parent.id', 'asc'); + console.log('alertsOrderedByEventId', JSON.stringify(alertsOrderedByEventId, null, 2)); expect(alertsOrderedByEventId.length).equal(2); });