()
| 29 | } |
| 30 | |
| 31 | function resolveAxePathFromConfig(): string | null { |
| 32 | const value = getConfig().axePath; |
| 33 | if (!value) return null; |
| 34 | const resolved = resolve(value); |
| 35 | return isExecutable(resolved) ? resolved : null; |
| 36 | } |
| 37 | |
| 38 | function isDirectory(path: string): boolean { |
| 39 | try { |
no test coverage detected