(...args: string[])
| 113 | export const TEST_ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url))); |
| 114 | |
| 115 | export function resolvePathFromTestRoot(...args: string[]): string { |
| 116 | return path.resolve(TEST_ROOT, ...args); |
| 117 | } |
| 118 | |
| 119 | // Tracked temporary directories. |
| 120 | export function newTempDir() { |
no test coverage detected