(stderr: string)
| 14 | const normalizeDots = (text: string) => text.replaceAll(/\.+$/gm, '.'); |
| 15 | |
| 16 | function cleanStderr(stderr: string) { |
| 17 | const {rest} = extractSummary(stderr); |
| 18 | return rest |
| 19 | .replaceAll(/.*(jest-jasmine2|jest-circus).*\n/g, '') |
| 20 | .replaceAll(new RegExp('Failed: Object {', 'g'), 'thrown: Object {'); |
| 21 | } |
| 22 | |
| 23 | beforeAll(() => { |
| 24 | runYarnInstall(dir); |
no test coverage detected