-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Actually update tests to version 3 #35
Comments
🎉 |
Really nice to have the UI for tasks :) -- before
describe "concept"
[ test "test 1a" <| ...
, test "test 1b" <| ...
, test "test 2a" <| ...
]
-- after
describe "concept"
[ describe "1" -- the task id
[ test "test 1a" <| ...
, test "test 1b" <| ...
]
, describe "2"
[ test "test 2a" <| ...
]
] |
Closed via #36. |
Currently we mark the
results.json
with a"version": 3
, but it's not actually earned.According to the docs, version 3 means that the test runner can link individual tests to a task, which we don't do.
According to this discussion, it involves updating the version of
elm-test-rs
.It will also involve a large PR in
exercism/elm
to tag all the concept exercise tests to their task.The text was updated successfully, but these errors were encountered: