File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -4406,9 +4406,13 @@ pub(super) mod tests {
4406
4406
. collect ( )
4407
4407
}
4408
4408
4409
+ /// Development utility test for converting transaction requests from binary files.
4410
+ /// This test is ignored because it depends on specific binary test files that may not exist
4411
+ /// and because mina_p2p_messages currently has compilation issues with serde traits.
4412
+ /// This is primarily a development tool rather than a validation test.
4409
4413
#[ allow( unused) ]
4410
4414
#[ test]
4411
- #[ ignore]
4415
+ #[ ignore = "Development utility - depends on external binary files and has compilation issues" ]
4412
4416
fn test_convert_requests ( ) {
4413
4417
use binprot:: BinProtWrite ;
4414
4418
use mina_p2p_messages:: v2:: * ;
@@ -4669,10 +4673,12 @@ pub(super) mod tests {
4669
4673
assert_eq ! ( hash, Fp :: from_str( EXPECTED ) . unwrap( ) ) ;
4670
4674
}
4671
4675
4672
- /// Print requests types
4676
+ /// Development utility test for reading transaction request types from binary files.
4677
+ /// This test is ignored because it depends on specific binary test files in circuit directories
4678
+ /// and is primarily a development tool for analyzing transaction data.
4673
4679
#[ allow( unused) ]
4674
4680
#[ test]
4675
- #[ ignore]
4681
+ #[ ignore = "Development utility - depends on external binary files in circuit directories" ]
4676
4682
fn test_read_requests ( ) {
4677
4683
let path = Path :: new ( env ! ( "CARGO_MANIFEST_DIR" ) )
4678
4684
. join ( devnet_circuit_directory ( ) )
Original file line number Diff line number Diff line change @@ -15,14 +15,20 @@ scenario_test!(
15
15
) ;
16
16
17
17
scenario_test ! (
18
- #[ ignore = "investigate falure" ]
18
+ /// Integration test for initial node joining behavior.
19
+ /// This test is ignored because it was failing and needs investigation.
20
+ /// It tests the basic connectivity when a node initially joins the network.
21
+ #[ ignore = "Integration test failure - needs investigation of joining behavior" ]
19
22
initial_joining,
20
23
SoloNodeBasicConnectivityInitialJoining ,
21
24
SoloNodeBasicConnectivityInitialJoining
22
25
) ;
23
26
24
27
scenario_test ! (
25
- #[ ignore = "investigate falure" ]
28
+ /// Integration test for root snarked ledger synchronization.
29
+ /// This test is ignored because it was failing and needs investigation.
30
+ /// It tests the node's ability to sync the root snarked ledger from peers.
31
+ #[ ignore = "Integration test failure - needs investigation of ledger sync behavior" ]
26
32
sync_root_snarked_ledger,
27
33
SoloNodeSyncRootSnarkedLedger ,
28
34
SoloNodeSyncRootSnarkedLedger
You can’t perform that action at this time.
0 commit comments