(...args)
| 233 | const harness = makeFetchHarness([kp.publicJwk]); |
| 234 | let upstreamUp = true; |
| 235 | const flaky: typeof globalThis.fetch = (...args) => |
| 236 | upstreamUp ? harness.fetch(...args) : failingFetch(...args); |
| 237 | |
| 238 | // ttl short enough that the next call is past it, stale window generous. |
| 239 | const jwks = createCachedRemoteJWKSet(jwksUrl, { |
nothing calls this directly
no test coverage detected