We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50eb7f4 commit 2505ac7Copy full SHA for 2505ac7
1 file changed
lib/command/workers/runTests.js
@@ -29,8 +29,8 @@ if (poolMode && !options.debug) {
29
// In pool mode without debug, suppress only result summaries and failures, but allow Scenario Steps
30
const originalWrite = process.stdout.write
31
process.stdout.write = string => {
32
- // Always allow Scenario Steps output
33
- if (string.includes('Scenario Steps:')) {
+ // Always allow Scenario Steps output (including the circle symbol)
+ if (string.includes('Scenario Steps:') || string.includes('◯ Scenario Steps:')) {
34
return originalWrite.call(process.stdout, string)
35
}
36
if (string.includes(' FAIL |') || string.includes(' OK |') || string.includes('-- FAILURES:') || string.includes('AssertionError:') || string.includes('◯ File:')) {
0 commit comments