Rulvar API reference / @rulvar/testing / MAX_LIVE_SMOKE_DELAY_MS
Variable: MAX_LIVE_SMOKE_DELAY_MS
ts
const MAX_LIVE_SMOKE_DELAY_MS: 2147483647 = 2_147_483_647;Defined in: packages/testing/src/live.ts:58
Hard ceiling on every scheduled backoff: Node's maximum timer delay (2^31 - 1 ms). Anything above it would not sleep longer, it would be clamped to 1 ms with a TimeoutOverflowWarning, so both baseDelayMs and the largest scheduled delay, baseDelayMs * (attempts - 1), are validated against this bound before any stream opens.