( args: string[] = [], options: ProcessOptions )
| 58 | }; |
| 59 | |
| 60 | export const runCli = async ( |
| 61 | args: string[] = [], |
| 62 | options: ProcessOptions |
| 63 | ): Promise<RenderResult> => { |
| 64 | return runProcess(process.execPath, [getCliPath(), ...args], options); |
| 65 | }; |
| 66 | |
| 67 | export const runGit = async ( |
| 68 | args: string[], |
no test coverage detected
searching dependent graphs…