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
2424cargo 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
2828cargo 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:**
You can’t perform that action at this time.
0 commit comments