(path: string)
| 20 | |
| 21 | const BASE = "http://localhost:4788"; |
| 22 | const get = (path: string) => handler(new Request(`${BASE}${path}`)); |
| 23 | const signUp = (body: Record<string, unknown>) => |
| 24 | handler( |
| 25 | new Request(`${BASE}/api/auth/sign-up/email`, { |
no test coverage detected