Skip to content
This repository was archived by the owner on Nov 30, 2025. It is now read-only.

Commit 5cc14c1

Browse files
authored
refactor(ui): nice nerd icons for test report (#7)
1 parent 906847f commit 5cc14c1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lua/java-test/ui/floating-report-viewer.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ function FloatingReportViewer:show(test_results)
2222
tc.append(prefix .. indentation)
2323

2424
if result.is_suite then
25-
tc.append('📁 ' .. result.test_name).lbreak()
25+
tc.append(' ' .. result.test_name).lbreak()
2626
else
2727
if result.result.status == TestStatus.Failed then
28-
tc.append('' .. result.test_name)
28+
tc.append('󰅙 ' .. result.test_name)
2929
.lbreak()
3030
.append(indentation)
3131
.append(result.result.trace, indentation)
3232
elseif result.result.status == TestStatus.Skipped then
33-
tc.append(' ' .. result.test_name).lbreak()
33+
tc.append(' ' .. result.test_name).lbreak()
3434
else
35-
tc.append('' .. result.test_name).lbreak()
35+
tc.append('' .. result.test_name).lbreak()
3636
end
3737
end
3838

0 commit comments

Comments
 (0)