Enabled logging for tests

This commit is contained in:
Dominique Eifländer 2024-03-20 13:46:55 +01:00 committed by maverickstuder
parent 107d5f7278
commit c757428a09

View File

@ -49,6 +49,12 @@ tasks.named<Test>("test") {
tasks.test {
finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run
// Test Logging
testLogging {
events("standardOut", "started", "passed", "skipped", "failed")
}
}
tasks.jacocoTestReport {