We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Test runner needs correctly formatted output from TesterMain
see https://github.com/exercism/docs/blob/main/building/tooling/test-runners/interface.md
{ "version": 2, "status": "fail", "message": null, "tests": [ { "name": "Test that the thing works", "status": "fail", "message": "Expected 42 but got 123123", "output": "Debugging information output by the user", "test_code": "assert_equal 42, answerToTheUltimateQuestion()" } ] }
Current output missing "message" and "test_code" items.
{ "name" : "Test 23: non-question ending with whitespace", "status": "fail" } ], "version": 2, "status": "fail" }
The text was updated successfully, but these errors were encountered:
Issue also tracked here: exercism/fortran-test-runner#3
Sorry, something went wrong.
Trying to fix #140 Improving json format and clean up (#143)
b872b49
* Improving json format and clean up * Remove optional arguments of assert_equal
Successfully merging a pull request may close this issue.
Test runner needs correctly formatted output from TesterMain
see https://github.com/exercism/docs/blob/main/building/tooling/test-runners/interface.md
Current output missing "message" and "test_code" items.
The text was updated successfully, but these errors were encountered: