this repo has no description
0
fork

Configure Feed

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

Hacky syntax highlighting

+2 -2
+2 -2
README.md
··· 13 13 14 14 And then call the `discover_and_run_tests` function from your test main function. 15 15 16 - ```gleam 16 + ```rust 17 17 // In test/yourapp_test.gleam 18 18 import gleeunit 19 19 ··· 25 25 Now any public function with a name ending in `_test` in the `test` directory 26 26 will be found and run as a test. 27 27 28 - ```gleam 28 + ```rust 29 29 pub fn the_universe_test() { 30 30 assert 1 = 1 31 31 }