diff --git a/UI/Headless/Test.cpp b/UI/Headless/Test.cpp index 6bb687f58cb..33005543ee4 100644 --- a/UI/Headless/Test.cpp +++ b/UI/Headless/Test.cpp @@ -501,8 +501,12 @@ ErrorOr run_tests(Core::AnonymousBuffer const& theme, Gfx::IntSize window_ outln("Pass: {}, Fail: {}, Skipped: {}, Timeout: {}", pass_count, fail_count, skipped_count, timeout_count); outln("=================================================="); - for (auto const& non_passing_test : non_passing_tests) + for (auto const& non_passing_test : non_passing_tests) { + if (non_passing_test.result == TestResult::Skipped && !app.verbose) + continue; + outln("{}: {}", test_result_to_string(non_passing_test.result), non_passing_test.test.input_path); + } if (app.verbose) { auto tests_to_print = min(10uz, tests.size());