We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac54f3f commit a579019Copy full SHA for a579019
tests/objectbox-java-test/build.gradle.kts
@@ -111,12 +111,15 @@ tasks.withType<Test> {
111
}
112
113
testLogging {
114
- showStandardStreams = true
115
exceptionFormat = TestExceptionFormat.FULL
116
displayGranularity = 2
+ // Note: this overwrites showStandardStreams = true, so set it by
117
+ // adding the standard out/error events.
118
events = setOf(
119
TestLogEvent.STARTED,
- TestLogEvent.PASSED
120
+ TestLogEvent.PASSED,
121
+ TestLogEvent.STANDARD_OUT,
122
+ TestLogEvent.STANDARD_ERROR
123
)
124
125
0 commit comments