Skip to content

Commit 2bfb163

Browse files
committed
Chore: 테스트 실패 로그 출력 설정 - build.gradle
1 parent f3fbd65 commit 2bfb163

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ repositories {
2323
mavenCentral()
2424
}
2525

26+
test {
27+
testLogging {
28+
events "passed", "skipped", "failed", "standardOut", "standardError"
29+
exceptionFormat "full"
30+
showCauses true
31+
showExceptions true
32+
showStackTraces true
33+
}
34+
}
35+
2636
dependencies {
2737
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
2838
implementation 'org.springframework.boot:spring-boot-starter-security'

0 commit comments

Comments
 (0)