Skip to content

Commit f2c1826

Browse files
committed
verbose test
1 parent 36346ab commit f2c1826

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,22 @@ ext {
131131
}
132132

133133

134+
test {
135+
testLogging {
136+
// Show which test is running
137+
events "passed", "skipped", "failed", "standardOut", "standardError"
138+
139+
// Show standard out and error
140+
showStandardStreams = true
141+
142+
// Optional: show more details
143+
exceptionFormat = "full"
144+
showExceptions = true
145+
showCauses = true
146+
showStackTraces = true
147+
}
148+
}
149+
134150

135151

136152
publishing {

0 commit comments

Comments
 (0)