()
| 22 | const TOKEN = "test-token"; |
| 23 | |
| 24 | const testHandlers = () => ({ |
| 25 | api: { |
| 26 | handler: async () => new Response("ok"), |
| 27 | dispose: async () => {}, |
| 28 | }, |
| 29 | mcp: { |
| 30 | handleRequest: async () => new Response("ok"), |
| 31 | handleApprovalRequest: async () => new Response("ok"), |
| 32 | handlePausedRequest: async () => new Response("ok"), |
| 33 | close: async () => {}, |
| 34 | }, |
| 35 | }); |
| 36 | |
| 37 | const startTestServer = async ( |
| 38 | opts: { authToken?: string; hostname?: string } = {}, |
no outgoing calls
no test coverage detected