Files
cloudlysis/docs/developer/testing.md
Vlad Durnea e9a0142396
Some checks failed
ci / ui (push) Failing after 28s
images / build-and-push (push) Failing after 19s
ci / rust (push) Failing after 2m26s
docs: add docs folder (architecture, developer, usage); update README; wire probe TTL cache + concurrency notes into docs
2026-03-30 14:32:47 +03:00

464 B

Testing

Unit and Integration

cargo test --workspace

Gated Tests (require external services)

  • Runner NATS:
RUNNER_TEST_NATS_URL=nats://127.0.0.1:4222 cargo test -p runner -- --ignored
  • Projection NATS:
PROJECTION_TEST_NATS_URL=nats://127.0.0.1:4222 cargo test -p projection -- --ignored
  • Docker-based gates:
cargo test -p gateway -- --ignored

Control UI

cd control/ui
npm ci
npm run test