From 51cf75e6fc81ac9c31559c337c8d29509aaa2fe9 Mon Sep 17 00:00:00 2001 From: kobenguyent <7845001+kobenguyent@users.noreply.github.com> Date: Tue, 30 Sep 2025 11:36:38 +0200 Subject: [PATCH] fix: flaky UTs --- lib/command/workers/runTests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/command/workers/runTests.js b/lib/command/workers/runTests.js index 7223ec36d..983cbb944 100644 --- a/lib/command/workers/runTests.js +++ b/lib/command/workers/runTests.js @@ -29,8 +29,8 @@ if (poolMode && !options.debug) { // In pool mode without debug, suppress only result summaries and failures, but allow Scenario Steps const originalWrite = process.stdout.write process.stdout.write = string => { - // Always allow Scenario Steps output - if (string.includes('Scenario Steps:')) { + // Always allow Scenario Steps output (including the circle symbol) + if (string.includes('Scenario Steps:') || string.includes('◯ Scenario Steps:')) { return originalWrite.call(process.stdout, string) } if (string.includes(' FAIL |') || string.includes(' OK |') || string.includes('-- FAILURES:') || string.includes('AssertionError:') || string.includes('◯ File:')) {