Skip to content

Commit 3c5cdb8

Browse files
committed
use --detach-on-success
1 parent 1e6de2d commit 3c5cdb8

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

CLAUDE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
173173
nix 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
179179
cargo 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
186186
nix 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
192192
cargo test -p graph-tests --test integration_tests
193193
```
194194

0 commit comments

Comments
 (0)