(path: string)
| 7 | import { __resetConfigStoreForTests } from '../config-store.ts'; |
| 8 | |
| 9 | function writeExecutable(path: string): void { |
| 10 | mkdirSync(dirname(path), { recursive: true }); |
| 11 | writeFileSync(path, ''); |
| 12 | chmodSync(path, 0o755); |
| 13 | } |
| 14 | |
| 15 | describe('axe-helpers', () => { |
| 16 | let originalResourceRoot: string | undefined; |