From b7fbcfabb31ae0f4b395dda1af5692d9084a5397 Mon Sep 17 00:00:00 2001 From: prathams-cmd Date: Fri, 20 Feb 2026 16:40:02 +0530 Subject: [PATCH] Added displayName field for step-definition --- bin/testObservability/cypress/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/testObservability/cypress/index.js b/bin/testObservability/cypress/index.js index 3f904920..ef65708d 100644 --- a/bin/testObservability/cypress/index.js +++ b/bin/testObservability/cypress/index.js @@ -65,7 +65,8 @@ Cypress.on('log:changed', (attrs) => { }); } - const keyword = (attrs.name || '').trim(); + const keyword = (attrs.displayName || attrs.name || '').trim(); + if (STEP_KEYWORDS.includes(keyword.toLowerCase())) { const text = (attrs.message || '')