Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bin/testObservability/cypress/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 || '')

Expand Down