(paths: readonly string[])
| 18 | } |
| 19 | |
| 20 | function sortPaths(paths: readonly string[]): string[] { |
| 21 | return [...paths].sort((left, right) => left.localeCompare(right)); |
| 22 | } |
| 23 | |
| 24 | afterEach(async () => { |
| 25 | await Promise.all( |
no outgoing calls
no test coverage detected