(command: string)
| 159 | function createTimeoutBash(bash: Bash, timeoutMs: number) { |
| 160 | return { |
| 161 | async exec(command: string) { |
| 162 | return withTimeout(bash.exec(command), timeoutMs, command); |
| 163 | }, |
| 164 | fs: bash.fs, |
| 165 | }; |
| 166 | } |
nothing calls this directly
no test coverage detected