(rawPaths: string)
| 14 | const testRootDir = path.resolve(__dirname, '..', '..'); |
| 15 | |
| 16 | const normalizePaths = (rawPaths: string) => |
| 17 | rawPaths |
| 18 | .split(testRootDir) |
| 19 | .join(`${path.sep}MOCK_ABSOLUTE_PATH`) |
| 20 | .split('\\') |
| 21 | .join('/'); |
| 22 | |
| 23 | describe('--listTests flag', () => { |
| 24 | it('causes tests to be printed in different lines', () => { |