Skip to content

Commit 8aba4e3

Browse files
authored
feat: recursively log successful results in summary (#1108)
1 parent 8552164 commit 8aba4e3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

internal/command/run.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,10 @@ func logResults(indent int, results []result.Result, logSettings log.Settings) {
253253
}
254254

255255
log.Success(indent, result.Name, result.Duration)
256+
257+
if len(result.Sub) > 0 {
258+
logResults(indent+1, result.Sub, logSettings)
259+
}
256260
}
257261
}
258262

0 commit comments

Comments
 (0)