()
| 13 | const TOKEN = "test-token"; |
| 14 | |
| 15 | const testHandlers = () => ({ |
| 16 | api: { |
| 17 | handler: async () => new Response("ok"), |
| 18 | dispose: async () => {}, |
| 19 | }, |
| 20 | mcp: { |
| 21 | handleRequest: async () => new Response("ok"), |
| 22 | handleApprovalRequest: async () => new Response("ok"), |
| 23 | handlePausedRequest: async () => new Response("ok"), |
| 24 | close: async () => {}, |
| 25 | }, |
| 26 | }); |
| 27 | |
| 28 | const startTestServer = async ( |
| 29 | opts: { authToken?: string; hostname?: string } = {}, |
no outgoing calls
no test coverage detected