(str: string)
| 202 | .replaceAll(', estimated <<REPLACED>>', ''); |
| 203 | |
| 204 | export const replaceNodeInfo = (str: string) => |
| 205 | str |
| 206 | .replaceAll(/[^\n]*node:internal\/[^\n]*\n?/g, '') |
| 207 | .replaceAll(/Node\.js v\d+\.\d+\.\d+/g, 'Node.js <<REPLACED>>'); |
| 208 | |
| 209 | export const replaceJestBuildLineNumbers = (str: string) => |
| 210 | str.replaceAll( |
no outgoing calls
no test coverage detected