rtfeldman / node-test-runner

Runs elm-test suites from Node.js. Get it with npm install -g elm-test
BSD 3-Clause "New" or "Revised" License
134 stars 79 forks source link

Support --watch for "elm-test make" #628

Open jfmengels opened 1 year ago

jfmengels commented 1 year ago

elm-test supports a watch mode through elm-test --watch, which is extremely useful.

In projects where tests are slow and when I'm doing some refactoring (moving position of arguments, renaming, etc.), I would like to have the option to run elm-test make --watch to have a quick feedback to make sure I did all the necessary changes for my code and tests to compile.

Unfortunately, at the moment elm-test make --watch ignores the --watch flag.

Prior art: elm-test-rs supports this option.