(from: string, moduleName?: string)
| 338 | ); |
| 339 | } |
| 340 | getEsmModuleId(from: string, moduleName?: string): string { |
| 341 | return this.resolution.getEsmModuleId( |
| 342 | this.virtualEsmMocks, |
| 343 | from, |
| 344 | moduleName, |
| 345 | ); |
| 346 | } |
| 347 | getEsmModuleIdAsync(from: string, moduleName?: string): Promise<string> { |
| 348 | return this.resolution.getEsmModuleIdAsync( |
| 349 | this.virtualEsmMocks, |
no outgoing calls
no test coverage detected