(requests: readonly { readonly path: string; readonly body: string }[])
| 1635 | }); |
| 1636 | |
| 1637 | const refreshGrants = (requests: readonly { readonly path: string; readonly body: string }[]) => |
| 1638 | requests.filter((r) => r.path === "/token" && r.body.includes("grant_type=refresh_token")); |
| 1639 | |
| 1640 | describe("reactive OAuth refresh on upstream 401", () => { |
| 1641 | it.effect( |