Skip to content

Commit 99c4f49

Browse files
committedJun 17, 2024·
fix: don't show warning message with Node16/NodeNext
fixes #4266
1 parent 9062e07 commit 99c4f49

File tree

2 files changed

+52
-11
lines changed

2 files changed

+52
-11
lines changed
 

‎src/legacy/config/config-set.spec.ts

+46-10
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ import * as ts from 'typescript'
66

77
import { createConfigSet } from '../../__helpers__/fakers'
88
import { logTargetMock } from '../../__helpers__/mocks'
9+
import type { RawCompilerOptions } from '../../raw-compiler-options'
910
import type { AstTransformerDesc, TsJestGlobalOptions } from '../../types'
1011
import { stringify } from '../../utils'
1112
import * as _backports from '../../utils/backports'
1213
import { getPackageVersion } from '../../utils/get-package-version'
14+
import { Errors } from '../../utils/messages'
1315
import { normalizeSlashes } from '../../utils/normalize-slashes'
1416
import { sha1 } from '../../utils/sha1'
1517

@@ -54,7 +56,7 @@ describe('parsedTsConfig', () => {
5456
})
5557

5658
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)
5860
})
5961

6062
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', () => {
98100
allowSyntheticDefaultImports: true,
99101
esModuleInterop: false,
100102
})
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))
105104
})
106105

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 }) => {
108129
const target = logTargetMock()
109130
target.clear()
110131
const cs = createConfigSet({
111132
tsJestConfig: {
112-
tsconfig: { module: 'amd', esModuleInterop: false },
133+
tsconfig: { module: moduleString as RawCompilerOptions['module'], esModuleInterop: false },
113134
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 },
115151
},
116152
resolve: null,
117153
})
118154

119155
expect(cs.parsedTsConfig.options).toMatchObject({
120-
module: ts.ModuleKind.AMD,
156+
module: ts.ModuleKind.CommonJS,
121157
esModuleInterop: false,
122158
})
123-
expect(cs.parsedTsConfig.options.allowSyntheticDefaultImports).toBeFalsy()
159+
expect(target.lines.warn.join()).toEqual(expect.not.stringContaining(Errors.ConfigNoModuleInterop))
124160
})
125161
}) // parsedTsConfig
126162

‎src/legacy/config/config-set.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -472,9 +472,14 @@ export class ConfigSet {
472472
? this.compilerModule.ModuleKind.CommonJS
473473
: this.compilerModule.ModuleKind.ESNext
474474
const moduleValue = finalOptions.module ?? defaultModule
475+
const warningModulesForEsmInterop = [
476+
this.compilerModule.ModuleKind.CommonJS,
477+
this.compilerModule.ModuleKind.Node16,
478+
this.compilerModule.ModuleKind.NodeNext,
479+
]
475480
if (
476481
!this.babelConfig &&
477-
moduleValue !== this.compilerModule.ModuleKind.CommonJS &&
482+
!warningModulesForEsmInterop.includes(moduleValue) &&
478483
!(finalOptions.esModuleInterop || finalOptions.allowSyntheticDefaultImports)
479484
) {
480485
result.errors.push({

0 commit comments

Comments
 (0)
Please sign in to comment.