From fc2e00152b162280e78b06028d51274e33275629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 24 Jan 2023 15:05:54 +0100 Subject: feat: support node built-in module imports (#17264) Co-authored-by: David Sherret --- cli/tests/testdata/run/node_builtin_modules/mod.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 cli/tests/testdata/run/node_builtin_modules/mod.js (limited to 'cli/tests/testdata/run/node_builtin_modules/mod.js') diff --git a/cli/tests/testdata/run/node_builtin_modules/mod.js b/cli/tests/testdata/run/node_builtin_modules/mod.js new file mode 100644 index 000000000..70e39be56 --- /dev/null +++ b/cli/tests/testdata/run/node_builtin_modules/mod.js @@ -0,0 +1,2 @@ +import process from "node:process"; +console.log(process.version); -- cgit v1.2.3