(args: string[] = [stdioFixture])
| 45 | type SessionRpcEvent = AgentEvent & { readonly agentId: string }; |
| 46 | |
| 47 | function stdioConfig(args: string[] = [stdioFixture]) { |
| 48 | return { |
| 49 | transport: 'stdio' as const, |
| 50 | command: process.execPath, |
| 51 | args, |
| 52 | }; |
| 53 | } |
| 54 | |
| 55 | function sessionRpc(options: { |
| 56 | readonly events?: SessionRpcEvent[] | undefined; |
no outgoing calls
no test coverage detected