Ah, good point! ```tasks { withType<Test&g...
# minutest
d
Ah, good point!
Copy code
tasks {
    withType<Test> {
        useJUnitPlatform {
            includeEngines(
                 "junit-jupiter", 
                 "minutest"    <--------- add the test engine
            )
        }
        testLogging {
            events("skipped", "failed", "passed")
        }
    }
}