1
1
import MagicString from 'magic-string'
2
- import type { CallExpression , Identifier , ImportDeclaration , VariableDeclaration , Node as _Node } from 'estree'
2
+ import type { CallExpression , Identifier , ImportDeclaration , ImportNamespaceSpecifier , VariableDeclaration , Node as _Node } from 'estree'
3
3
import { findNodeAround , simple as simpleWalk } from 'acorn-walk'
4
4
import type { AcornNode } from 'rollup'
5
5
@@ -24,11 +24,6 @@ function isIdentifier(node: any): node is Positioned<Identifier> {
24
24
}
25
25
26
26
function transformImportSpecifiers ( node : ImportDeclaration ) {
27
- const specifiers = node . specifiers
28
-
29
- if ( specifiers . length === 1 && specifiers [ 0 ] . type === 'ImportNamespaceSpecifier' )
30
- return specifiers [ 0 ] . local . name
31
-
32
27
const dynamicImports = node . specifiers . map ( ( specifier ) => {
33
28
if ( specifier . type === 'ImportDefaultSpecifier' )
34
29
return `default: ${ specifier . local . name } `
@@ -86,12 +81,25 @@ export function hoistMocks(code: string, id: string, parse: (code: string, optio
86
81
const transformImportDeclaration = ( node : ImportDeclaration ) => {
87
82
const source = node . source . value as string
88
83
84
+ const namespace = node . specifiers . find ( specifier => specifier . type === 'ImportNamespaceSpecifier' ) as ImportNamespaceSpecifier | undefined
85
+
86
+ let code = ''
87
+ if ( namespace )
88
+ code += `const ${ namespace . local . name } = await import('${ source } ')\n`
89
+
89
90
// if we don't hijack ESM and process this file, then we definetly have mocks,
90
91
// so we need to transform imports into dynamic ones, so "vi.mock" can be executed before
91
92
const specifiers = transformImportSpecifiers ( node )
92
- const code = specifiers
93
- ? `const ${ specifiers } = await import('${ source } ')\n`
94
- : `await import('${ source } ')\n`
93
+
94
+ if ( specifiers ) {
95
+ if ( namespace )
96
+ code += `const ${ specifiers } = ${ namespace . local . name } \n`
97
+ else
98
+ code += `const ${ specifiers } = await import('${ source } ')\n`
99
+ }
100
+ else if ( ! namespace ) {
101
+ code += `await import('${ source } ')\n`
102
+ }
95
103
return code
96
104
}
97
105
0 commit comments