(store: AdcpStateStore | null)
| 64 | |
| 65 | /** Override the store (tests only — refuses to run in production). */ |
| 66 | export function setStateStore(store: AdcpStateStore | null): void { |
| 67 | if (process.env.NODE_ENV === 'production') { |
| 68 | throw new Error('setStateStore is not allowed in production'); |
| 69 | } |
| 70 | storeInstance = store; |
| 71 | } |
| 72 | |
| 73 | // ── Per-request cache via AsyncLocalStorage ────────────────────── |
| 74 |
no outgoing calls
no test coverage detected