Skip to content

Instantly share code, notes, and snippets.

View Wirlie's full-sized avatar
🚀
Working on new projects

Wirlie

🚀
Working on new projects
View GitHub Profile
@serpro69
serpro69 / build.gradle.kts
Last active May 8, 2023 05:22
gradle junit test output
import org.gradle.api.tasks.testing.TestResult.ResultType
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
//...
tasks.test {
useJUnitPlatform()
maxParallelForks = 1
testLogging { // credits: https://stackoverflow.com/a/36130467/5917497