(
identity: Identity,
input: URL,
init: RequestInit = {},
)
| 70 | }; |
| 71 | |
| 72 | const authenticatedFetch = ( |
| 73 | identity: Identity, |
| 74 | input: URL, |
| 75 | init: RequestInit = {}, |
| 76 | ): Promise<Response> => |
| 77 | fetch(input, { |
| 78 | ...init, |
| 79 | headers: { |
| 80 | ...(identity.headers ?? {}), |
| 81 | ...(init.headers ?? {}), |
| 82 | }, |
| 83 | }); |
| 84 | |
| 85 | scenario( |
| 86 | "MCP approval · browser resume page loads the paused execution from its approval URL", |
no test coverage detected