From 0812fd5b7ffaf55d52a45dbef4ab9b35d6211dc7 Mon Sep 17 00:00:00 2001 From: AlexOmarov Date: Fri, 15 Nov 2024 23:47:56 +0700 Subject: [PATCH] AUTH-14 refactoring --- auth-service-app/build.gradle.kts | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 + } } }