elm-explorations / test

Write unit and fuzz tests for Elm code.
https://package.elm-lang.org/packages/elm-explorations/test/latest
BSD 3-Clause "New" or "Revised" License
236 stars 40 forks source link

Documentation needs to specify what tests elm-test runs #139

Open ksvanhorn opened 4 years ago

ksvanhorn commented 4 years ago

The README gives some examples of tests but doesn't tell you what the rules are that elm-test uses to decide which tests to run. Does it run tests from every module in the tests directory? What about subdirectories of the tests directory? Does it run every top-level defined value of type Test in a module? Or just the first one? Or is it specifically looking for one named "suite"?