/**
* Deterministic test fixtures
*
* IMPORTANT: Never use new Date() or Date.now() in tests or production code.
* All timestamps must be deterministic to ensure reproducibility.
*/
export const FIXED_TIMESTAMP = '2025-01-01T00:00:00.000Z';
export const FIXED_TIMESTAMP_2 = '2025-01-01T00:01:00.000Z';
export const FIXED_TIMESTAMP_3 = '2025-01-01T00:02:00.000Z';