(str: string)
| 207 | .replaceAll(/Node\.js v\d+\.\d+\.\d+/g, 'Node.js <<REPLACED>>'); |
| 208 | |
| 209 | export const replaceJestBuildLineNumbers = (str: string) => |
| 210 | str.replaceAll( |
| 211 | /([^:\s]*[\w-]+[/\\]build[/\\][^:\s]+:)\d+(?::\d+)?/g, |
| 212 | '$1<<REPLACED>>', |
| 213 | ); |
| 214 | |
| 215 | const repoRoot = path.resolve(__dirname, '..'); |
| 216 |
no outgoing calls
no test coverage detected