Use for full app-boot Kotest E2E tests: HTTP/Kafka/Postgres flows, Testcontainers, @Tags("E2E"), TestContext, ./gradlew e2eTest, or /e2e-tests. Use /integration-tests for real adapters without app boot.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Use for full app-boot Kotest E2E tests: HTTP/Kafka/Postgres flows, Testcontainers, @Tags("E2E"), TestContext, ./gradlew e2eTest, or /e2e-tests. Use /integration-tests for real adapters without app boot.
E2E Tests
Rules
Test one full user or system flow through the running app.
Assert observable effects, not internal implementation.
Use Testcontainers for external boundaries like Kafka and Postgres.
Use Kotest FunSpec.
Mark full app-boot specs with @Tags("E2E").
Use TestContext when setup would otherwise hide the flow.
Run with ./gradlew e2eTest; default ./gradlew test excludes E2E.