Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,15 @@ cargo test -p graph-tests --test runner_tests test_name -- --nocapture
3. Anvil running on localhost:3021
4. Yarn (v1)
5. Foundry (for smart contract compilation)
6. **Built graph-node binary** (integration tests require the compiled binary)

The environment dependencies and environment setup are operated by the human.

**Running Integration Tests:**
```bash
# REQUIRED: Build graph-node binary before running integration tests
cargo build --bin graph-node

# Run all integration tests
cargo test -p graph-tests --test integration_tests -- --nocapture

Expand Down Expand Up @@ -247,6 +251,9 @@ cargo test -p graph-tests --test runner_tests -- --nocapture
# PostgreSQL: localhost:3011, IPFS: localhost:3001, Anvil: localhost:3021
nix run .#integration

# Claude: Build graph-node binary before running integration tests
cargo build --bin graph-node

# Claude: Run integration tests
cargo test -p graph-tests --test integration_tests
```
Expand Down