(path: string)
| 36 | } |
| 37 | |
| 38 | function isDirectory(path: string): boolean { |
| 39 | try { |
| 40 | return statSync(path).isDirectory(); |
| 41 | } catch { |
| 42 | return false; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | function getAxeSourceBuildCandidates(sourcePath: string): string[] { |
| 47 | const candidates = [join(sourcePath, '.build', 'release', 'axe')]; |
no test coverage detected