CI - 단위테스트 안정화 및 e2e 분리 워크플로 도입
- AccountControllerTest 현 컨트롤러 API 기준 재작성
- Selenium 4종·SignupFileTest @Tag("e2e") 부여
- BaseWebTest headless 옵션, e2e 워크플로 신설
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
+7
-1
@@ -158,7 +158,13 @@ processResources {
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
useJUnitPlatform {
|
||||
if (project.hasProperty('includeE2E') && project.includeE2E.toBoolean()) {
|
||||
includeTags 'e2e'
|
||||
} else {
|
||||
excludeTags 'e2e'
|
||||
}
|
||||
}
|
||||
enabled = true
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user