@@ -168,27 +168,27 @@ The repository includes a process-compose-flake setup that provides native, decl
168168
169169** Unit Tests:**
170170``` bash
171- # Start PostgreSQL + IPFS for unit tests (run manually, or Claude can launch with --detach)
171+ # Start PostgreSQL + IPFS for unit tests (run manually, or Claude can launch with --detach-on-success )
172172# PostgreSQL: localhost:5432, IPFS: localhost:5001
173173nix run .# unit
174174
175175# Alternatively, Claude can run services in background:
176- nix run .# unit -- --detach
176+ nix run .# unit -- --detach-on-success-on-success
177177
178- # In another terminal (or same if using --detach), run unit tests
178+ # In another terminal (or same if using --detach-on-success ), run unit tests
179179cargo test --workspace --exclude graph-tests
180180```
181181
182182** Integration Tests:**
183183``` bash
184- # Start all services for integration tests (run manually, or Claude can launch with --detach)
184+ # Start all services for integration tests (run manually, or Claude can launch with --detach-on-success )
185185# PostgreSQL: localhost:3011, IPFS: localhost:3001, Anvil: localhost:3021
186186nix run .# integration
187187
188188# Alternatively, Claude can run services in background:
189- nix run .# integration -- --detach
189+ nix run .# integration -- --detach-on-success
190190
191- # In another terminal (or same if using --detach), run integration tests
191+ # In another terminal (or same if using --detach-on-success ), run integration tests
192192cargo test -p graph-tests --test integration_tests
193193```
194194
0 commit comments