(from: string, moduleID: string)
| 16 | const unmockRegExpCache = new WeakMap<Config.ProjectConfig, RegExp>(); |
| 17 | |
| 18 | const transitiveCacheKey = (from: string, moduleID: string) => |
| 19 | `${from}\0${moduleID}`; |
| 20 | |
| 21 | export type MockDecision = {shouldMock: boolean; moduleID: string}; |
| 22 |
no outgoing calls
no test coverage detected