(command: string, options?: Record<string, unknown>)
| 54 | disposedHandles: () => disposedHandles, |
| 55 | runtime: { |
| 56 | exec(command: string, options?: Record<string, unknown>) { |
| 57 | calls.push({ command, options }); |
| 58 | return Promise.resolve( |
| 59 | makeHandle(options?.id as string | undefined, options?.backend as string | undefined), |
| 60 | ); |
| 61 | }, |
| 62 | getExec(id: string, options?: Record<string, unknown>) { |
| 63 | calls.push({ command: `get:${id}`, options }); |
| 64 | return Promise.resolve(makeHandle(id, options?.backend as string | undefined)); |
nothing calls this directly
no test coverage detected