Skip to content

Commit d3f7572

Browse files
committed
update CLAUDE.md
1 parent 6ea8bad commit d3f7572

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

CLAUDE.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Graph Node is a Rust-based decentralized blockchain indexing protocol that enabl
2424
cargo test --workspace --exclude graph-tests
2525

2626
# Run specific tests
27-
cargo test --package graph data_source::common::tests
27+
cargo test -p graph data_source::common::tests
2828
cargo test <specific_test_name>
2929
```
3030

@@ -47,7 +47,10 @@ Integration tests require external services and are more complex to run than uni
4747
**Running Integration Tests:**
4848
```bash
4949
# Run all integration tests
50-
cargo test --package graph-tests --test integration_tests -- --nocapture
50+
cargo test -p graph-tests --test integration_tests -- --nocapture
51+
52+
# Run a specific integration test case (e.g., "grafted" test case)
53+
TEST_CASE=grafted cargo test -p graph-tests --test integration_tests -- --nocapture
5154
```
5255

5356
**Important Notes:**

0 commit comments

Comments
 (0)