@@ -11,9 +11,9 @@ const getTargets = _getTargets.default || _getTargets;
11
11
12
12
const dirname = path . dirname ( fileURLToPath ( import . meta. url ) ) ;
13
13
14
- // "minNodeVersion": "23 .0.0" <-- For Ctrl+F when dropping node 22
15
- const nodeGte23 = itGte ( "23.0 .0" ) ;
16
- const nodeLt23 = itLt ( "23.0 .0" ) ;
14
+ // "minNodeVersion": "22 .0.0" <-- For Ctrl+F when dropping node 20
15
+ const nodeGte22_12 = itGte ( "22.12 .0" ) ;
16
+ const nodeLt22_12 = itLt ( "22.12 .0" ) ;
17
17
18
18
import { isMJS , loadOptionsAsync , skipUnsupportedESM } from "./helpers/esm.js" ;
19
19
@@ -1169,20 +1169,23 @@ describe("buildConfigChain", function () {
1169
1169
} ,
1170
1170
) ;
1171
1171
1172
- nodeLt23 ( "should not load babel.config.mjs synchronously" , async ( ) => {
1173
- const { cwd, tmp, config } = await getTemp (
1174
- "babel-test-load-config-sync-babel.config.mjs" ,
1175
- ) ;
1176
- const filename = tmp ( "src.js" ) ;
1172
+ nodeLt22_12 (
1173
+ "should not load babel.config.mjs synchronously" ,
1174
+ async ( ) => {
1175
+ const { cwd, tmp, config } = await getTemp (
1176
+ "babel-test-load-config-sync-babel.config.mjs" ,
1177
+ ) ;
1178
+ const filename = tmp ( "src.js" ) ;
1177
1179
1178
- await config ( "babel.config.mjs" ) ;
1180
+ await config ( "babel.config.mjs" ) ;
1179
1181
1180
- expect ( ( ) => loadOptionsSync ( { filename, cwd } ) ) . toThrow (
1181
- / i s o n l y s u p p o r t e d w h e n r u n n i n g B a b e l a s y n c h r o n o u s l y / ,
1182
- ) ;
1183
- } ) ;
1182
+ expect ( ( ) => loadOptionsSync ( { filename, cwd } ) ) . toThrow (
1183
+ / i s o n l y s u p p o r t e d w h e n r u n n i n g B a b e l a s y n c h r o n o u s l y / ,
1184
+ ) ;
1185
+ } ,
1186
+ ) ;
1184
1187
1185
- nodeGte23 ( "should load babel.config.mjs synchronously" , async ( ) => {
1188
+ nodeGte22_12 ( "should load babel.config.mjs synchronously" , async ( ) => {
1186
1189
const { cwd, tmp, config } = await getTemp (
1187
1190
"babel-test-load-config-sync-babel.config.mjs" ,
1188
1191
) ;
@@ -1282,7 +1285,7 @@ describe("buildConfigChain", function () {
1282
1285
} ) ;
1283
1286
} ) ;
1284
1287
1285
- nodeLt23 ( "should not load .babelrc.mjs synchronously" , async ( ) => {
1288
+ nodeLt22_12 ( "should not load .babelrc.mjs synchronously" , async ( ) => {
1286
1289
const { cwd, tmp, config } = await getTemp (
1287
1290
"babel-test-load-config-sync-.babelrc.mjs" ,
1288
1291
) ;
@@ -1295,7 +1298,7 @@ describe("buildConfigChain", function () {
1295
1298
) ;
1296
1299
} ) ;
1297
1300
1298
- nodeGte23 ( "should load .babelrc.mjs synchronously" , async ( ) => {
1301
+ nodeGte22_12 ( "should load .babelrc.mjs synchronously" , async ( ) => {
1299
1302
const { cwd, tmp, config } = await getTemp (
1300
1303
"babel-test-load-config-sync-.babelrc.mjs" ,
1301
1304
) ;
0 commit comments