File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -168,27 +168,21 @@ 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-on-success)
171+ # Human: Start PostgreSQL + IPFS for unit tests in a separate terminal
172172# PostgreSQL: localhost:5432, IPFS: localhost:5001
173173nix run .# unit
174174
175- # Alternatively, Claude can run services in background:
176- nix run .# unit -- --detach-on-success-on-success
177-
178- # In another terminal (or same if using --detach-on-success), run unit tests
175+ # Claude can then run unit tests
179176cargo test --workspace --exclude graph-tests
180177```
181178
182179** Integration Tests:**
183180``` bash
184- # Start all services for integration tests (run manually, or Claude can launch with --detach-on-success)
181+ # Human: Start all services for integration tests in a separate terminal
185182# PostgreSQL: localhost:3011, IPFS: localhost:3001, Anvil: localhost:3021
186183nix run .# integration
187184
188- # Alternatively, Claude can run services in background:
189- nix run .# integration -- --detach-on-success
190-
191- # In another terminal (or same if using --detach-on-success), run integration tests
185+ # Claude can then run integration tests
192186cargo test -p graph-tests --test integration_tests
193187```
194188
You can’t perform that action at this time.
0 commit comments