(command: string)
| 83 | function createTimeoutBash(bash: Bash, timeoutMs: number) { |
| 84 | return { |
| 85 | async exec(command: string) { |
| 86 | return withTimeout(bash.exec(command), timeoutMs, command); |
| 87 | }, |
| 88 | fs: bash.fs, |
| 89 | }; |
| 90 | } |
nothing calls this directly
no test coverage detected