(signal?: AbortSignal)
| 128 | } |
| 129 | |
| 130 | private async headSha(signal?: AbortSignal): Promise<string | null> { |
| 131 | const r = await git(['rev-parse', 'HEAD'], { cwd: this.cwd, signal }); |
| 132 | return (r.exitCode === 0) ? r.stdout.trim() : null; |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Enter the sandbox. Returns true if isolation is now active, false if it |
no test coverage detected