* Normalizes path separators to forward slashes for cross-platform assertions.
(str: string)
| 34 | * Normalizes path separators to forward slashes for cross-platform assertions. |
| 35 | */ |
| 36 | function normalizePaths(str: string): string { |
| 37 | return str.replace(/\\/g, '/'); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Creates a test change with the specified artifacts completed. |
no outgoing calls
no test coverage detected