* Import a file using Vite module runner. The file will be transformed by Vite and executed in a separate context. * @param moduleId The ID of the module in Vite module graph
(moduleId: string)
| 525 | * @param moduleId The ID of the module in Vite module graph |
| 526 | */ |
| 527 | public import<T>(moduleId: string): Promise<T> { |
| 528 | return this.runner.import(moduleId) |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * Creates a coverage provider if `coverage` is enabled in the config. |
no outgoing calls
no test coverage detected