Skip to main content

How to run tests

cd backend/platform
./gradlew test # Unit tests
./gradlew integrationTest # Integration tests (if configured)
./gradlew test --tests "*.SomeTest" # Specific test class

CI behavior

CI runs all tests automatically on push/PR to main:

  • Backend tests trigger on backend/** or proto/** changes
  • Frontend tests trigger on frontend/** changes
  • See .github/workflows/ci.yml for the full configuration

What's next