(stderr: string)
| 20 | const TEST_DIR = path.resolve(DIR, '__tests__'); |
| 21 | |
| 22 | function cleanStderr(stderr: string) { |
| 23 | const {rest} = extractSummary(stderr); |
| 24 | return rest.replaceAll(/.*(jest-jasmine2).*\n/g, ''); |
| 25 | } |
| 26 | |
| 27 | beforeEach(() => { |
| 28 | cleanup(DIR); |
no test coverage detected