Skip to content

Commit d465131

Browse files
authored
fix: incorret babel.config.cts test fixtures (#17051)
fix: incorret babel.config.cts test fixtures
1 parent 5fc3f75 commit d465131

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

eslint.config.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ export default [
282282
"nodeGte20",
283283
"nodeGte22_12",
284284
"nodeLt22_12",
285+
"nodeLt23_6",
285286
"nodeGte12NoESM",
286287
"testFn",
287288
],

packages/babel-core/test/config-ts.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { loadPartialConfigSync } from "../lib/index.js";
22
import path from "path";
33
import semver from "semver";
4-
import { USE_ESM, commonJS } from "$repo-utils";
4+
import { USE_ESM, commonJS, itLt } from "$repo-utils";
55

66
const { __dirname, require } = commonJS(import.meta.url);
77

@@ -11,6 +11,9 @@ const { __dirname, require } = commonJS(import.meta.url);
1111
// TODO: Make it work with USE_ESM.
1212
const shouldSkip = semver.lt(process.version, "14.0.0") || USE_ESM;
1313

14+
// Node.js 23.6 unflags --experimental-strip-types
15+
const nodeLt23_6 = itLt("23.6.0");
16+
1417
(shouldSkip ? describe : describe.skip)(
1518
"@babel/core config with ts [dummy]",
1619
() => {
@@ -38,7 +41,9 @@ const shouldSkip = semver.lt(process.version, "14.0.0") || USE_ESM;
3841
expect(config.options.sourceRoot).toMatchInlineSnapshot(`"/a/b"`);
3942
});
4043

41-
it("should throw with invalid .ts register", () => {
44+
// Node.js >=23.6 has builtin .ts register, so this test can be removed
45+
// when we dropped Node.js 23 support in the future
46+
nodeLt23_6("should throw with invalid .ts register", () => {
4247
require.extensions[".ts"] = () => {
4348
throw new Error("Not support .ts.");
4449
};
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import path from "path";
1+
const path = require("path");
22
type config = any;
3-
export default {
3+
module.exports = {
44
targets: "node 12.0.0",
55
sourceRoot: path.posix.join("/a", "b"),
66
} as config;
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import path from "path";
1+
const path = require("path");
22
type config = any;
3-
export default {
3+
module.exports = {
44
targets: "node 12.0.0",
55
sourceRoot: path.posix.join("/a", "b"),
66
} as config;

0 commit comments

Comments
 (0)