From 096fc936968c741dc651b4cff387c081da51d7c7 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Fri, 20 Dec 2024 16:24:56 +1100 Subject: [PATCH] test summary formatting --- tests/integration/testmanager.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/testmanager.nim b/tests/integration/testmanager.nim index fd46c059..22a700a5 100644 --- a/tests/integration/testmanager.nim +++ b/tests/integration/testmanager.nim @@ -235,7 +235,7 @@ proc printOutput(manager: TestManager) = var successes = 0 echo "▢=====================================================================▢" echo "| TEST SUMMARY |" - echo "=" + echo "|" for test in manager.tests: without output =? test.output: echo "| [FATAL] Test '", test.config.name, "' failed to run to completion" @@ -246,7 +246,7 @@ proc printOutput(manager: TestManager) = echo "| [OK] Test '", test.config.name, "' succeeded" inc successes - echo "| ------------------------------------------------------------------- |" + echo "| |" echo "| PASSING : ", successes, " / ", manager.tests.len let totalDuration = manager.timeEnd - manager.timeStart echo "| TOTAL TIME : ", totalDuration