<@U0FMXU16E> Regarding the test output from Gradle...
# minutest
d
@christophsturm Regarding the test output from Gradle 1 Note that the test reports are fine, the only issue is Gradle’s reporting of the errors in it’s own failure messages. 2 You can swap to using the somewhat experimental JUnit 4 runner. This should just be a question of replacing
: JUnit5Minutests
with
:JUnit4Minutests()
and making sure that your Gradle build has
includeEngines("junit-jupiter", "junit-vintage")
3 You can swap to using the also experimental Minutest Runner - @natpryce should be able to help you down this route.