diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-09 17:35:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 21:35:41 +0000 |
commit | 560ad0331bf99a2564f53201cd086ff902901bfe (patch) | |
tree | aa7b250366c62e7552793d954fabbfe6b47b80f4 /tests/testdata/run/node_builtin_modules/mod.js | |
parent | aadcf3346c25ed9d880c2bfc43b62aa075ea6126 (diff) |
fix(node/byonm): do not accidentally resolve bare node built-ins (#25543)
This was accidentally enabled in byonm, but it requires the
`--unstable-bare-node-builtins` flag.
Closes #25358
Diffstat (limited to 'tests/testdata/run/node_builtin_modules/mod.js')
-rw-r--r-- | tests/testdata/run/node_builtin_modules/mod.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/testdata/run/node_builtin_modules/mod.js b/tests/testdata/run/node_builtin_modules/mod.js deleted file mode 100644 index a01ac4422..000000000 --- a/tests/testdata/run/node_builtin_modules/mod.js +++ /dev/null @@ -1,5 +0,0 @@ -import { createRequire } from "node:module"; -console.log(createRequire); -import process from "node:process"; -console.log(process.version); -console.log(process.argv); |