(baseUrl: string, path: string)
| 386 | } |
| 387 | |
| 388 | export function resolvePath(baseUrl: string, path: string) { |
| 389 | const filename = fileURLToPath(baseUrl) |
| 390 | return resolve(dirname(filename), path) |
| 391 | } |
| 392 | |
| 393 | export type TestFsStructure = Record< |
| 394 | string, |
no test coverage detected