(args: string[])
| 63 | } |
| 64 | |
| 65 | public executeCommand(args: string[]): string { |
| 66 | const path = this.getPath(); |
| 67 | return execFileSync(path, args, { encoding: "utf8" }).toString().trim(); |
| 68 | } |
| 69 | |
| 70 | public spawnCommand(args: string[]): ChildProcess { |
| 71 | const binaryPath = this.getPath(); |
no test coverage detected