File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Graph Node is a Rust-based decentralized blockchain indexing protocol that enabl
24
24
cargo test --workspace --exclude graph-tests
25
25
26
26
# Run specific tests
27
- cargo test --package graph data_source::common::tests
27
+ cargo test -p graph data_source::common::tests
28
28
cargo test < specific_test_name>
29
29
```
30
30
@@ -47,7 +47,10 @@ Integration tests require external services and are more complex to run than uni
47
47
** Running Integration Tests:**
48
48
``` bash
49
49
# 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
51
54
```
52
55
53
56
** Important Notes:**
You can’t perform that action at this time.
0 commit comments