()
| 202 | } |
| 203 | |
| 204 | async function getTestTimings() { |
| 205 | if (!kvClient) { |
| 206 | console.warn('KV client not configured, skipping timing fetch') |
| 207 | return null |
| 208 | } |
| 209 | |
| 210 | const timings = await retryKVOperation(async () => { |
| 211 | const data = await kvClient.get(KV_TIMINGS_KEY) |
| 212 | if (!data) { |
| 213 | console.log('No timing data found in KV store') |
| 214 | } |
| 215 | return data |
| 216 | }, 'fetch timings') |
| 217 | return timings || null |
| 218 | } |
| 219 | |
| 220 | async function main() { |
| 221 | // Ensure we have the arguments awaited from yargs. |
no test coverage detected