(root: string, filePath: string)
| 20 | } |
| 21 | |
| 22 | function relativePosix(root: string, filePath: string): string { |
| 23 | return relative(root, filePath).replaceAll('\\', '/') |
| 24 | } |
| 25 | |
| 26 | test('glob supports relative directory patterns like code/*/', async () => { |
| 27 | const root = makeTempRoot() |