()
| 36 | mockRelative.mockImplementation(path.posix.relative); |
| 37 | }; |
| 38 | const forceWindows = () => { |
| 39 | mockSep.mockReturnValue(path.win32.sep); |
| 40 | mockIsAbsolute.mockImplementation(path.win32.isAbsolute); |
| 41 | mockRelative.mockImplementation(path.win32.relative); |
| 42 | }; |
| 43 | beforeEach(() => { |
| 44 | jest.resetAllMocks(); |
| 45 | forcePosix(); |
no test coverage detected