startest
Functions
pub fn describe(name: String, suite: List(TestTree)) -> TestTree
Defines a new test suite with the given name.
A suite is a way of grouping related tests together.
describe
s may also be nested in other describe
s to form a hierarchy of tests.
pub fn run_tests(
tests: List(TestTree),
reporters: List(Reporter),
) -> Nil
Runs the given tests and reports results using the provided list of Reporter
s.