MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / resolveAxePathFromConfig

Function resolveAxePathFromConfig

src/utils/axe-helpers.ts:31–36  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

29}
30
31function 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
38function isDirectory(path: string): boolean {
39 try {

Callers 1

resolveAxeBinaryFunction · 0.85

Calls 3

getConfigFunction · 0.90
resolveFunction · 0.85
isExecutableFunction · 0.70

Tested by

no test coverage detected