File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ if (poolMode && !options.debug) {
2929 // In pool mode without debug, suppress only result summaries and failures, but allow Scenario Steps
3030 const originalWrite = process . stdout . write
3131 process . stdout . write = string => {
32- // Always allow Scenario Steps output
33- if ( string . includes ( 'Scenario Steps:' ) ) {
32+ // Always allow Scenario Steps output (including the circle symbol)
33+ if ( string . includes ( 'Scenario Steps:' ) || string . includes ( '◯ Scenario Steps:' ) ) {
3434 return originalWrite . call ( process . stdout , string )
3535 }
3636 if ( string . includes ( ' FAIL |' ) || string . includes ( ' OK |' ) || string . includes ( '-- FAILURES:' ) || string . includes ( 'AssertionError:' ) || string . includes ( '◯ File:' ) ) {
You can’t perform that action at this time.
0 commit comments