Hey! Thanks for this program. It's very useful and I appreciate your effort in creating and maintaining it.
The problem
If I pass a wrong value to --elm-test option the program silently falls back to default elm-test. I believe it's a wrong design choice. I would expect a meaningful error, like:
$ elm-verify-examples --elm-test typoz-here
Error: no such file or directory: typoz-here
Hey! Thanks for this program. It's very useful and I appreciate your effort in creating and maintaining it.
The problem
If I pass a wrong value to
--elm-test
option the program silently falls back to defaultelm-test
. I believe it's a wrong design choice. I would expect a meaningful error, like:The problem is caused here: https://github.com/stoeffel/elm-verify-examples/blob/master/bin/runner.js#L93-L96
Would you be interested in a PR addressing this?
Use case:
I run into this while trying to use your program with
elm-coverage
. I tried:and it just ran
elm-test
. I tried:Same thing. At this point I looked into source code and found what's going on.