(from: string)
| 105 | } |
| 106 | |
| 107 | jestObjectFor(from: string): Jest { |
| 108 | const cached = this.cache.get(from); |
| 109 | if (cached) return cached; |
| 110 | const fresh = this.buildJestObject(from); |
| 111 | this.cache.set(from, fresh); |
| 112 | return fresh; |
| 113 | } |
| 114 | |
| 115 | envGlobals(): EnvironmentGlobals { |
| 116 | if (this.envGlobalsOverride) { |
no test coverage detected