(directory: string, sessionId?: string)
| 102 | } |
| 103 | |
| 104 | export async function spawnRunnerSession(directory: string, sessionId?: string): Promise<any> { |
| 105 | const result = await runnerPost('/spawn-session', { directory, sessionId }); |
| 106 | return result; |
| 107 | } |
| 108 | |
| 109 | export async function stopRunnerHttp(): Promise<void> { |
| 110 | await runnerPost('/stop'); |
no test coverage detected