(f: typeof fetch)
| 39 | } |
| 40 | |
| 41 | function callCount(f: typeof fetch): number { |
| 42 | return (f as unknown as Mock<typeof fetch>).mock.calls.length; |
| 43 | } |
| 44 | |
| 45 | describe("getIdentity", () => { |
| 46 | it("sends GET to /api/v0/identity with Bearer token and returns team on success", async () => { |
no outgoing calls
no test coverage detected