diff --git a/AGENTS.md b/AGENTS.md index 56a3c6b..e15737b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -37,7 +37,7 @@ docker compose up -d # starts postgres, backend, frontend ### All-in-one ```bash -./gradlew check # frontend lint → frontend test → backend test → coverage verification +./gradlew check # frontend lint → frontend test → backend test+coverage → E2E (Docker) ./gradlew coverage # backend + frontend tests with coverage reports ./gradlew up # docker compose up -d ./gradlew down # docker compose down diff --git a/build.gradle b/build.gradle index c305bf5..682137b 100644 --- a/build.gradle +++ b/build.gradle @@ -44,7 +44,8 @@ tasks.register('frontendE2E', Exec) { } tasks.named('check').configure { - dependsOn frontendLint, frontendTest, frontendE2E + description = 'Full verification: frontend lint/tests, backend tests+coverage, E2E' + dependsOn ':backend:check', frontendE2E } tasks.register('up', Exec) {