style: add colors to test run output

This commit is contained in:
2026-03-21 06:29:03 +00:00
parent 1a5364a696
commit 7b61da612a
2 changed files with 28 additions and 10 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ func runTests(path string, tio testIO) error {
summary := testSummary{total: len(scenarios)}
for _, scenario := range scenarios {
output.Fprintf(tio.out, "RUN %s\n", scenario.relPath)
output.Fprintf(tio.out, "%s %s\n", output.LabelInfo("RUN"), scenario.relPath)
if err := replayScenario(scenario, shellPath, tio, cfg.Sandbox); err != nil {
summary.failed++