We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5bc6f7 commit 01847fdCopy full SHA for 01847fd
application-test/build.gradle.kts
@@ -1,3 +1,5 @@
1
+import org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
2
+import org.gradle.api.tasks.testing.logging.TestLogEvent.*
3
import ru.art.gradle.constants.lombok
4
5
/*
@@ -36,4 +38,11 @@ dependencies {
36
38
annotationProcessor(lombok().inGradleNotation())
37
39
testAnnotationProcessor(lombok().inGradleNotation())
40
testImplementation("org.hsqldb", "hsqldb", "2+")
41
+}
42
+
43
+tasks.withType<Test> {
44
+ testLogging {
45
+ events = setOf(PASSED, FAILED, SKIPPED)
46
+ exceptionFormat = FULL
47
+ }
48
}
0 commit comments