| 4 | import { Mock } from 'vitest'; |
| 5 | |
| 6 | interface Test { |
| 7 | test: string; |
| 8 | options: Omit<CrawlOptions, 'extensions'>; |
| 9 | files: Record<string, boolean>; |
| 10 | skipOnWin32?: boolean; |
| 11 | } |
| 12 | |
| 13 | const cwd = process.cwd(); |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected