[#31] feat: add test log event level

This commit is contained in:
Hanbin Lee
2023-01-23 23:34:58 +09:00
parent 35d951a92d
commit 83239c39ec

View File

@@ -78,15 +78,20 @@ subprojects {
useJUnitPlatform()
testLogging {
exceptionFormat = TestExceptionFormat.FULL
events = setOf(TestLogEvent.FAILED, TestLogEvent.STANDARD_ERROR)
events = setOf(
TestLogEvent.FAILED,
TestLogEvent.SKIPPED,
TestLogEvent.STANDARD_OUT,
TestLogEvent.STANDARD_ERROR
)
exceptionFormat = TestExceptionFormat.FULL
showExceptions = true
showCauses = true
showStackTraces = true
}
ignoreFailures = true
// ignoreFailures = true
addTestListener(object : TestListener {
override fun beforeSuite(suite: TestDescriptor?) {}