@@ -6,10 +6,12 @@ import * as ts from 'typescript'
6
6
7
7
import { createConfigSet } from '../../__helpers__/fakers'
8
8
import { logTargetMock } from '../../__helpers__/mocks'
9
+ import type { RawCompilerOptions } from '../../raw-compiler-options'
9
10
import type { AstTransformerDesc , TsJestGlobalOptions } from '../../types'
10
11
import { stringify } from '../../utils'
11
12
import * as _backports from '../../utils/backports'
12
13
import { getPackageVersion } from '../../utils/get-package-version'
14
+ import { Errors } from '../../utils/messages'
13
15
import { normalizeSlashes } from '../../utils/normalize-slashes'
14
16
import { sha1 } from '../../utils/sha1'
15
17
@@ -54,7 +56,7 @@ describe('parsedTsConfig', () => {
54
56
} )
55
57
56
58
it ( 'should include compiler config from base config' , ( ) => {
57
- expect ( get ( { tsconfig : { target : 'esnext ' } } ) . options . target ) . toBe ( ts . ScriptTarget . ESNext )
59
+ expect ( get ( { tsconfig : { target : 'ESNext ' } } ) . options . target ) . toBe ( ts . ScriptTarget . ESNext )
58
60
} )
59
61
60
62
it ( 'should fallback to ES2015 as default target and CommonJS as default module when no target or module defined in tsconfig' , ( ) => {
@@ -98,29 +100,63 @@ describe('parsedTsConfig', () => {
98
100
allowSyntheticDefaultImports : true ,
99
101
esModuleInterop : false ,
100
102
} )
101
- expect ( target . lines . warn . join ( ) ) . toMatchInlineSnapshot ( `
102
- "[level:40] message TS151001: If you have issues related to imports, you should consider setting \`esModuleInterop\` to \`true\` in your TypeScript configuration file (usually \`tsconfig.json\`). See https://blogs.msdn.microsoft.com/typescript/2018/01/31/announcing-typescript-2-7/#easier-ecmascript-module-interoperability for more information.
103
- "
104
- ` )
103
+ expect ( target . lines . warn . join ( ) ) . toEqual ( expect . stringContaining ( Errors . ConfigNoModuleInterop ) )
105
104
} )
106
105
107
- it ( 'should not warn neither set synth. default imports if using babel' , ( ) => {
106
+ it . each ( [
107
+ {
108
+ moduleString : 'CommonJS' ,
109
+ expectedConfig : {
110
+ module : ts . ModuleKind . CommonJS ,
111
+ esModuleInterop : false ,
112
+ } ,
113
+ } ,
114
+ {
115
+ moduleString : 'Node16' ,
116
+ expectedConfig : {
117
+ module : ts . ModuleKind . Node16 ,
118
+ esModuleInterop : false ,
119
+ } ,
120
+ } ,
121
+ {
122
+ moduleString : 'NodeNext' ,
123
+ expectedConfig : {
124
+ module : ts . ModuleKind . NodeNext ,
125
+ esModuleInterop : false ,
126
+ } ,
127
+ } ,
128
+ ] ) ( 'should not warn with module is $moduleString when not using babel' , ( { moduleString, expectedConfig } ) => {
108
129
const target = logTargetMock ( )
109
130
target . clear ( )
110
131
const cs = createConfigSet ( {
111
132
tsJestConfig : {
112
- tsconfig : { module : 'amd' , esModuleInterop : false } ,
133
+ tsconfig : { module : moduleString as RawCompilerOptions [ 'module' ] , esModuleInterop : false } ,
113
134
diagnostics : { warnOnly : true , pretty : false } ,
114
- babelConfig : { babelrc : false } ,
135
+ } ,
136
+ resolve : null ,
137
+ } )
138
+
139
+ expect ( cs . parsedTsConfig . options ) . toMatchObject ( expectedConfig )
140
+ expect ( target . lines . warn . join ( ) ) . toEqual ( expect . not . stringContaining ( Errors . ConfigNoModuleInterop ) )
141
+ } )
142
+
143
+ it ( 'should not warn neither set synth. default imports when using babel' , ( ) => {
144
+ const target = logTargetMock ( )
145
+ target . clear ( )
146
+ const cs = createConfigSet ( {
147
+ tsJestConfig : {
148
+ tsconfig : { module : 'CommonJS' , esModuleInterop : false } ,
149
+ diagnostics : { warnOnly : true , pretty : false } ,
150
+ babelConfig : { babelrc : true } ,
115
151
} ,
116
152
resolve : null ,
117
153
} )
118
154
119
155
expect ( cs . parsedTsConfig . options ) . toMatchObject ( {
120
- module : ts . ModuleKind . AMD ,
156
+ module : ts . ModuleKind . CommonJS ,
121
157
esModuleInterop : false ,
122
158
} )
123
- expect ( cs . parsedTsConfig . options . allowSyntheticDefaultImports ) . toBeFalsy ( )
159
+ expect ( target . lines . warn . join ( ) ) . toEqual ( expect . not . stringContaining ( Errors . ConfigNoModuleInterop ) )
124
160
} )
125
161
} ) // parsedTsConfig
126
162
0 commit comments