actr-hyper 0.2.1

Hyper — Actor platform infrastructure: sandbox, transport, scheduler, WASM engine, signing, AIS bootstrap, persistence & crypto primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Common test utilities for WebRTC and signaling tests
//!
//! This module provides shared infrastructure for integration tests:
//! - WebSocket-based signaling server (TestSignalingServer)
//! - Helper functions for creating peers and credentials
//! - Virtual network (VNet) for simulating network disconnection
//! - Common test utilities

pub mod harness;
pub mod signaling;
pub mod utils;
pub mod vnet;

pub use harness::{TestHarness, TestPeer};
pub use signaling::TestSignalingServer;
pub use utils::*;
pub use vnet::{VNetPair, create_vnet_pair};