//! Regression test for issue #35: ensures the duplicated CDP overhead
//! constant in `crw-core::config` stays in lockstep with the source-of-truth
//! constants in `crw-renderer::cdp`. Without this, changing
//! `SPA_SELECTOR_MAX_MS`, the challenge retry budget, content-stability
//! budget, or fetch overhead in the renderer would silently re-introduce
//! deadline clamping that crushes per-tier timeouts.
//!
//! Why duplicate at all: `crw-renderer` already depends on `crw-core`, so
//! `crw-core` cannot import `crw_renderer::cdp` without a cycle.
//! The integration crate (`crw-server`) is the natural place to assert
//! equality because it depends on both.