()
| 50 | let cache; |
| 51 | |
| 52 | const createCache = () => ({ |
| 53 | get: jest.genMockFn().mockImplementation( |
| 54 | (filepath, field, cb) => cb(filepath) |
| 55 | ), |
| 56 | invalidate: jest.genMockFn(), |
| 57 | end: jest.genMockFn(), |
| 58 | }); |
| 59 | |
| 60 | let transformCacheKey; |
| 61 | const createModule = options => |
no test coverage detected
searching dependent graphs…