this repo has no description
0
fork

Configure Feed

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

v1.6.1

+8 -2
+5
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## v1.6.1 - 2025-07-23 4 + 5 + - Fixed a bug where the number of skipped tests could be omitted. 6 + - Fixed a bug where the wrong exit status code could be used. 7 + 3 8 ## v1.6.0 - 2025-06-29 4 9 5 10 - Improved formatting of unexpected errors.
+1 -1
gleam.toml
··· 1 1 name = "gleeunit" 2 - version = "1.6.0" 2 + version = "1.6.1" 3 3 licences = ["Apache-2.0"] 4 4 description = "A simple test runner for Gleam, using EUnit on Erlang" 5 5 repository = { type = "github", user = "lpil", repo = "gleeunit" }
+2 -1
src/gleeunit/internal/reporting.gleam
··· 35 35 <> int.to_string(state.failed) 36 36 <> " failures" 37 37 io.println(red(message)) 38 - 0 38 + 1 39 39 } 40 40 State(failed: 0, ..) -> { 41 41 let message = ··· 54 54 <> " tests, " 55 55 <> int.to_string(state.failed) 56 56 <> " failures, " 57 + <> int.to_string(state.skipped) 57 58 <> " skipped" 58 59 io.println(red(message)) 59 60 1