diff --git a/auth-service-app/build.gradle.kts b/auth-service-app/build.gradle.kts index 2bdf5ca..f2d7527 100644 --- a/auth-service-app/build.gradle.kts +++ b/auth-service-app/build.gradle.kts @@ -61,6 +61,17 @@ tasks { test { useJUnitPlatform() + testLogging { + events = setOf( + org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED, + org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED, + org.gradle.api.tasks.testing.logging.TestLogEvent.SKIPPED, + ) + exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL + showExceptions = true + showCauses = true + showStackTraces = true + } } }