( repoRoot = WRAPPER_HARNESS_REPO_ROOT, )
| 268 | } |
| 269 | |
| 270 | export function resolveCompiledBinaryPath( |
| 271 | repoRoot = WRAPPER_HARNESS_REPO_ROOT, |
| 272 | ): string | null { |
| 273 | const matches = findCompiledBinaryCandidates(repoRoot) |
| 274 | if (matches.length === 0) { |
| 275 | return null |
| 276 | } |
| 277 | return matches[0]! |
| 278 | } |
| 279 | |
| 280 | export function requireCompiledBinaryPath(): string { |
| 281 | let compiledBinaryPath = resolveCompiledBinaryPath() |
no test coverage detected