(...paths: string[])
| 17 | |
| 18 | // correct paths to be from workspace root rather than extension folder |
| 19 | const getWorkspacePath = (...paths: string[]) => { |
| 20 | const workspacePath = join(WORKSPACE_ROOT, ...paths) |
| 21 | logger(`Workspace path: ${workspacePath}`) |
| 22 | return workspacePath |
| 23 | } |
| 24 | |
| 25 | export const exec = (params: ExecParams): Promise<{ stdout: string; stderr: string }> | never => { |
| 26 | const cwd = join(WORKSPACE_ROOT, params.dir || '') |
no test coverage detected