use Duration;
/// Poll cadence for short test-only fallback loops.
pub const FILE_WATCH_FALLBACK_POLL: Duration = from_millis;
/// Grace period for negative assertions after shutdown or process cancellation.
pub const PROCESS_EXIT_GRACE: Duration = from_millis;
/// Initial wait/poll cadence for tests that probe asynchronous network dispatch.
pub const NETWORK_PROBE_INITIAL: Duration = from_millis;
/// 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 = from_secs;