You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dash-spv/CLAUDE.md
+1-15Lines changed: 1 addition & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,6 @@ cargo test
57
57
cargo test --test handshake_test
58
58
cargo test --test header_sync_test
59
59
cargo test --test storage_test
60
-
cargo test --test integration_real_node_test
61
60
62
61
# Run individual test functions
63
62
cargo test --test handshake_test test_handshake_with_mainnet_peer
@@ -69,19 +68,6 @@ cargo test -- --nocapture
69
68
cargo test --test handshake_test test_handshake_with_mainnet_peer -- --nocapture
70
69
```
71
70
72
-
**Integration Tests with Real Node:**
73
-
The integration tests in `tests/integration_real_node_test.rs` connect to a live Dash Core node at `127.0.0.1:9999`. These tests gracefully skip if no node is available.
74
-
75
-
```bash
76
-
# Run real node integration tests
77
-
cargo test --test integration_real_node_test -- --nocapture
78
-
79
-
# Test specific real node functionality
80
-
cargo test --test integration_real_node_test test_real_header_sync_genesis_to_1000 -- --nocapture
81
-
```
82
-
83
-
See `run_integration_tests.md` for detailed setup instructions.
84
-
85
71
### Code Quality
86
72
```bash
87
73
# Check formatting
@@ -201,7 +187,7 @@ Use domain-specific error types:
201
187
**Common Debug Commands:**
202
188
```bash
203
189
# Run with tracing output
204
-
RUST_LOG=debug cargo test --test integration_real_node_test -- --nocapture
190
+
RUST_LOG=debug cargo test --test test_handshake_with_mainnet_peer -- --nocapture
205
191
206
192
# Run specific test with verbose output
207
193
cargo test --test handshake_test test_handshake_with_mainnet_peer -- --nocapture --test-threads=1
0 commit comments