()
| 31 | } as typeof path; |
| 32 | }); |
| 33 | const forcePosix = () => { |
| 34 | mockSep.mockReturnValue(path.posix.sep); |
| 35 | mockIsAbsolute.mockImplementation(path.posix.isAbsolute); |
| 36 | mockRelative.mockImplementation(path.posix.relative); |
| 37 | }; |
| 38 | const forceWindows = () => { |
| 39 | mockSep.mockReturnValue(path.win32.sep); |
| 40 | mockIsAbsolute.mockImplementation(path.win32.isAbsolute); |
no test coverage detected