(_path: string, init?: RequestInit)
| 1251 | const name = (id as unknown as { __name: string }).__name; |
| 1252 | return { |
| 1253 | async fetch(_path: string, init?: RequestInit): Promise<Response> { |
| 1254 | siblingCalls.push({ idFromName: name, init }); |
| 1255 | return new Response('OK', { status: responseStatus }); |
| 1256 | }, |
| 1257 | } as unknown as DurableObjectStub; |
| 1258 | }, |
| 1259 | } as unknown as DurableObjectNamespace, |
no test coverage detected