Skip to content

Commit 61de718

Browse files
authored
Update node 23.1 experimental warning (#16934)
* Revert "fix: CI with Node v23.1.0 (#16932)" This reverts commit 8b5b6bf. * update known experimental warning regex
1 parent e5e3bd2 commit 61de718

File tree

1 file changed

+2
-11
lines changed
  • packages/babel-core/test/helpers

1 file changed

+2
-11
lines changed

packages/babel-core/test/helpers/esm.js

+2-11
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,11 @@ async function spawn(runner, filename, cwd = process.cwd()) {
5656
process.execPath,
5757
// pass `cwd` as params as `process.cwd()` will normalize `cwd` on macOS
5858
[require.resolve(`../fixtures/babel-${runner}.mjs`), filename, cwd],
59-
{
60-
cwd,
61-
env: {
62-
...process.env,
63-
NODE_OPTIONS:
64-
parseInt(process.versions.node) >= 23
65-
? "--disable-warning=ExperimentalWarning"
66-
: "",
67-
},
68-
},
59+
{ cwd, env: process.env },
6960
);
7061

7162
const EXPERIMENTAL_WARNING =
72-
/\(node:\d+\) ExperimentalWarning: (The ESM module loader is experimental\.|Support for loading ES Module in require\(\) is an experimental feature and might change at any time\n\(Use `node --trace-warnings ...` to show where the warning was created\))/;
63+
/\(node:\d+\) ExperimentalWarning: (The ESM module loader is experimental\.|CommonJS module .+? is loading ES Module .+? using require\(\)\.\nSupport for loading ES Module in require\(\) is an experimental feature and might change at any time\n\(Use `node --trace-warnings ...` to show where the warning was created\))/;
7364

7465
if (stderr.replace(EXPERIMENTAL_WARNING, "").trim()) {
7566
throw new Error(

0 commit comments

Comments
 (0)