this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Improve formatting

+10 -7
+4
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## Unreleased 4 + 5 + - Improved formatting of unexpected errors. 6 + 3 7 ## v1.5.1 - 2025-06-11 4 8 5 9 - Fixed a bug where Erlang modules in subdirectories within `test` could cause
+6 -7
src/gleeunit/internal/reporting.gleam
··· 89 89 function: String, 90 90 error: dynamic.Dynamic, 91 91 ) -> String { 92 - [ 93 - grey(module <> "." <> function), 94 - "An unexpected error occurred:", 95 - "", 96 - " " <> string.inspect(error), 97 - ] 98 - |> string.join("\n") 92 + string.concat([ 93 + grey(module <> "." <> function) <> "\n", 94 + "An unexpected error occurred:\n", 95 + "\n", 96 + " " <> string.inspect(error) <> "\n", 97 + ]) 99 98 } 100 99 101 100 fn format_gleam_error(