···22import gleam/string
3344/// Find and run all test functions for the current project using Erlang's EUnit
55-/// test framework.
55+/// test framework, or a custom JavaScript test runner.
66///
77/// Any Erlang or Gleam function in the `test` directory with a name ending in
88/// `_test` is considered a test function and will be run.
99///
1010-/// If running on JavaScript tests will be run with a custom test runner.
1010+/// A test that panics is considered a failure.
1111///
1212pub fn main() -> Nil {
1313 do_main()