| 36 | // ── Fixture project creation ───────────────────────────────────────────── |
| 37 | |
| 38 | export interface FixtureProject { |
| 39 | /** Absolute path to the temporary project directory */ |
| 40 | root: string; |
| 41 | /** Clean up the temporary directory */ |
| 42 | cleanup: () => void; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Creates a temporary project directory with realistic multi-language source files |
nothing calls this directly
no outgoing calls
no test coverage detected