Kotlin Test runner can't pick runtime errors

The kotlin test runner isnt able to print out run time errors in the test output, which was reported by a user on discord. This is apparent on all run time errors, but for simplicity, here is an easy reproduce case:

fun hello(): String {
    0 / 0
    return "Hello, World!"
}

I have created a hotfix that will allow the test runner to pick up run time errors, but the proper messaging for run-time errors and test that covers this is still missing (which somebody else will have to look into since I don’t got the time), pr: [Hotfix]: no output on runtime error by meatball133 · Pull Request #58 · exercism/kotlin-test-runner (github.com)

2 Likes