From 5f3c8b7085f6652fdde4443983df0aad561e3c67 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 10 Dec 2025 16:31:47 +0000 Subject: Phase 8: Create catchup sync stub test --- tests/sync.rs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/sync.rs') diff --git a/tests/sync.rs b/tests/sync.rs index 7756c17..2836d8d 100644 --- a/tests/sync.rs +++ b/tests/sync.rs @@ -5,6 +5,9 @@ //! //! - `bootstrap` - Tests for sync from pre-configured bootstrap relay //! - `discovery` - Tests for relay discovery from announcement events +//! - `live_sync` - Tests for real-time sync after connection established +//! - `tag_variations` - Tests for different Layer 2/3 tag types +//! - `catchup` - Tests for catchup sync after disconnect (not yet implemented) //! //! # Running Tests //! @@ -17,6 +20,9 @@ //! //! # Run specific test //! cargo test --test sync test_bootstrap_syncs -- --nocapture +//! +//! # Run ignored tests (like catchup) +//! cargo test --test sync -- --ignored //! ``` // Include the common test utilities @@ -25,6 +31,7 @@ mod common; // Include sync test submodules (located in tests/sync/) mod sync { pub mod bootstrap; + pub mod catchup; pub mod discovery; pub mod live_sync; pub mod tag_variations; -- cgit v1.2.3