(
runtime: Runtime,
workspace: TestWorkspace,
command: string,
options: Partial<Parameters<typeof execBuffered>[2]> = {}
)
| 147 | ); |
| 148 | |
| 149 | const execWorkspace = ( |
| 150 | runtime: Runtime, |
| 151 | workspace: TestWorkspace, |
| 152 | command: string, |
| 153 | options: Partial<Parameters<typeof execBuffered>[2]> = {} |
| 154 | ) => execBuffered(runtime, command, { cwd: workspace.path, timeout: 30, ...options }); |
| 155 | |
| 156 | const withRuntimeWorkspace = async <T>( |
| 157 | run: (runtime: Runtime, workspace: TestWorkspace) => Promise<T> |
no test coverage detected