From ebdc67cd0d65c5757e542834c2d9f64f524cbbe3 Mon Sep 17 00:00:00 2001 From: Andres Granizo Date: Fri, 21 Jun 2024 21:38:46 -0500 Subject: [PATCH] Enable verbose test logging --- build.gradle | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 0acd891..e2e8610 100644 --- a/build.gradle +++ b/build.gradle @@ -16,16 +16,14 @@ dependencies { } test { - useJUnitPlatform() + // Show standard output and error output from tests testLogging { events "passed", "skipped", "failed" - exceptionFormat "full" - showCauses true - showExceptions true - showStackTraces true + showStandardStreams = true } } + application { mainClass = 'App' }