(path: string)
| 20 | }; |
| 21 | |
| 22 | function isExecutable(path: string): boolean { |
| 23 | try { |
| 24 | accessSync(path, constants.X_OK); |
| 25 | return true; |
| 26 | } catch { |
| 27 | return false; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | function resolveAxePathFromConfig(): string | null { |
| 32 | const value = getConfig().axePath; |
no outgoing calls
no test coverage detected