this repo has no description
0
fork

Configure Feed

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

Return Nil

+2 -1
+2 -1
src/gleeunit.gleam
··· 2 2 import gleam/string 3 3 import gleam/dynamic.{Dynamic} 4 4 5 - pub fn discover_and_run_tests() { 5 + pub fn discover_and_run_tests() -> Nil { 6 6 find_files(matching: "**/*.{erl,gleam}", in: "test") 7 7 |> list.map(remove_extension) 8 8 |> list.map(dangerously_convert_string_to_atom) 9 9 |> run_eunit([Verbose]) 10 + Nil 10 11 } 11 12 12 13 fn remove_extension(path: String) -> String {