harn-vm 0.7.53

Async bytecode virtual machine for the Harn programming language
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::time::Duration;

/// Poll cadence for short test-only fallback loops.
pub const FILE_WATCH_FALLBACK_POLL: Duration = Duration::from_millis(10);
/// Grace period for negative assertions after shutdown or process cancellation.
pub const PROCESS_EXIT_GRACE: Duration = Duration::from_millis(100);
/// Initial wait/poll cadence for tests that probe asynchronous network dispatch.
pub const NETWORK_PROBE_INITIAL: Duration = Duration::from_millis(20);
/// Default upper bound for trigger test harness waits.
///
/// Set generously enough to absorb CPU starvation when the workspace
/// test suite runs the trigger dispatcher tests concurrently with
/// hundreds of other tokio tasks (the original 5-second budget
/// produced occasional spurious "timed out waiting for ..." failures
/// in CI under load).
pub const TEST_DEFAULT_TIMEOUT: Duration = Duration::from_secs(30);