Add comments noting default testLogging settings

This commit is contained in:
Ed
2021-07-13 15:29:52 -07:00
parent 24672bced1
commit 8599fd8d8f

View File

@@ -34,6 +34,9 @@ kotlin {
testTask {
testLogging {
exceptionFormat = TestExceptionFormat.FULL // Show full exception when an assertion fails
showExceptions = true // defaults to true
showCauses = true // defaults to true
showStackTraces = true // defaults to true
}
}
}