Skip to content

Commit 01847fd

Browse files
author
anton
committed
revert
1 parent b5bc6f7 commit 01847fd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

application-test/build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
2+
import org.gradle.api.tasks.testing.logging.TestLogEvent.*
13
import ru.art.gradle.constants.lombok
24

35
/*
@@ -36,4 +38,11 @@ dependencies {
3638
annotationProcessor(lombok().inGradleNotation())
3739
testAnnotationProcessor(lombok().inGradleNotation())
3840
testImplementation("org.hsqldb", "hsqldb", "2+")
41+
}
42+
43+
tasks.withType<Test> {
44+
testLogging {
45+
events = setOf(PASSED, FAILED, SKIPPED)
46+
exceptionFormat = FULL
47+
}
3948
}

0 commit comments

Comments
 (0)