-
-
Notifications
You must be signed in to change notification settings - Fork 6
Description
Due to an issue with the name field in the exercism report of elm-test-rs, we needed to update both the mpizenberg/elm-test-runner elm package with the fix (mpizenberg/elm-test-runner#12) and then the elm-test-rs executable to use that new version of the reporter package.
Related to another issue, I came to the conclusion that it would be possible (I think) to enable custom reporters, configured directly with command line arguments of the elm-test-rs executable. I've detailed the approach a bit more in that issue: mpizenberg/elm-test-runner#11
I'm linking this here, because I think doing this will benefit exercism since essentially, we could be using it like follows:
elm-test-rs --report "custom" --report-package "exercism/elm-reporter@1.0.0" --report-fn "ExercismReporter.implementation"This would enable any update to the exercism reporter code, as long as it's still compatible with the version of mpizenberg/elm-test-runner used by elm-test-rs.