(from: string, moduleName: string)
| 94 | } |
| 95 | |
| 96 | getCjsMockModule(from: string, moduleName: string): string | null { |
| 97 | return this.resolver.getMockModule(from, moduleName, { |
| 98 | conditions: this.cjsConditions, |
| 99 | }); |
| 100 | } |
| 101 | |
| 102 | getEsmMockModule(from: string, moduleName: string): string | null { |
| 103 | return this.resolver.getMockModule(from, moduleName, { |
no test coverage detected