Skip to content

Commit e5a4124

Browse files
committed
update CLAUDE.md
1 parent 847624a commit e5a4124

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

CLAUDE.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff 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
173173
nix 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
179176
cargo 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
186183
nix 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
192186
cargo test -p graph-tests --test integration_tests
193187
```
194188

0 commit comments

Comments
 (0)