(fetchImpl: typeof fetch)
| 20 | } |
| 21 | |
| 22 | function makeClient(fetchImpl: typeof fetch): AuthClient { |
| 23 | return new AuthClient({ baseUrl: "https://api.test.example", fetchImpl }); |
| 24 | } |
| 25 | |
| 26 | describe("auth/client", () => { |
| 27 | const original = process.env["HEYGEN_API_URL"]; |