diff options
Diffstat (limited to 'aoc2023/test/aoc2023_test.gleam')
-rw-r--r-- | aoc2023/test/aoc2023_test.gleam | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/aoc2023/test/aoc2023_test.gleam b/aoc2023/test/aoc2023_test.gleam index 3831e7a..2b696a4 100644 --- a/aoc2023/test/aoc2023_test.gleam +++ b/aoc2023/test/aoc2023_test.gleam @@ -1,12 +1,5 @@ -import gleeunit -import gleeunit/should +import showtime pub fn main() { - gleeunit.main() -} - -// gleeunit test functions end in `_test` -pub fn hello_world_test() { - 1 - |> should.equal(1) + showtime.main() } |