Koan
program : Test -> Platform.Program () Model Msg
An Elm Program that presents failing tests one at a time in the style of a Koan exercise.
These are all drop-in replacements for the helpers you'll find in elm-test
.
elm-koan-runner
takes each one and streams failures so only one failure at a time is displayed.
A test case or group of test cases.
describe : String -> List Test -> Test
Groups together a List of Tests.
test : String -> (() -> Expectation) -> Test
Creates a single test case.