Enabled logging for tests
This commit is contained in:
parent
107d5f7278
commit
c757428a09
@ -49,6 +49,12 @@ tasks.named<Test>("test") {
|
|||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run
|
finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run
|
||||||
|
// Test Logging
|
||||||
|
|
||||||
|
testLogging {
|
||||||
|
events("standardOut", "started", "passed", "skipped", "failed")
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.jacocoTestReport {
|
tasks.jacocoTestReport {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user