(requests: readonly { readonly path: string; readonly body: string }[])
| 1452 | }); |
| 1453 | |
| 1454 | const refreshGrants = (requests: readonly { readonly path: string; readonly body: string }[]) => |
| 1455 | requests.filter((r) => r.path === "/token" && r.body.includes("grant_type=refresh_token")); |
| 1456 | |
| 1457 | describe("reactive OAuth refresh on upstream 401", () => { |
| 1458 | it.effect( |