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.
Instalación
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
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.