aboutsummaryrefslogtreecommitdiff
path: root/test/fixtures
diff options
context:
space:
mode:
authorBradley Farias <bradley.meck@gmail.com>2017-06-05 19:44:56 -0500
committerBradley Farias <bradley.meck@gmail.com>2017-09-07 15:18:32 -0500
commitc8a389e19f172edbada83f59944cad7cc802d9d5 (patch)
tree15a8653683a97ff0d6b2e7f08ef8081405700ea3 /test/fixtures
parent46133b5beba2c780fb3b9a9d6be610d09f752182 (diff)
downloadandroid-node-v8-c8a389e19f172edbada83f59944cad7cc802d9d5.tar.gz
android-node-v8-c8a389e19f172edbada83f59944cad7cc802d9d5.tar.bz2
android-node-v8-c8a389e19f172edbada83f59944cad7cc802d9d5.zip
module: Allow runMain to be ESM
This follows the EPS an allows the node CLI to have ESM as an entry point. `node ./example.mjs`. A newer V8 is needed for `import()` so that is not included. `import.meta` is still in specification stage so that also is not included. PR-URL: https://github.com/nodejs/node/pull/14369 Author: Bradley Farias <bradley.meck@gmail.com> Author: Guy Bedford <guybedford@gmail.com> Author: Jan Krems <jan.krems@groupon.com> Author: Timothy Gu <timothygu99@gmail.com> Author: Michaƫl Zasso <targos@protonmail.com> Author: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Diffstat (limited to 'test/fixtures')
-rw-r--r--test/fixtures/es-module-require-cache/counter.js2
-rw-r--r--test/fixtures/es-module-require-cache/preload.js1
-rw-r--r--test/fixtures/es-module-url/empty.js0
-rw-r--r--test/fixtures/es-module-url/native.mjs2
4 files changed, 5 insertions, 0 deletions
diff --git a/test/fixtures/es-module-require-cache/counter.js b/test/fixtures/es-module-require-cache/counter.js
new file mode 100644
index 0000000000..2640d3e372
--- /dev/null
+++ b/test/fixtures/es-module-require-cache/counter.js
@@ -0,0 +1,2 @@
+global.counter = global.counter || 0;
+global.counter++; \ No newline at end of file
diff --git a/test/fixtures/es-module-require-cache/preload.js b/test/fixtures/es-module-require-cache/preload.js
new file mode 100644
index 0000000000..6090dc0d58
--- /dev/null
+++ b/test/fixtures/es-module-require-cache/preload.js
@@ -0,0 +1 @@
+require('./counter'); \ No newline at end of file
diff --git a/test/fixtures/es-module-url/empty.js b/test/fixtures/es-module-url/empty.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/test/fixtures/es-module-url/empty.js
diff --git a/test/fixtures/es-module-url/native.mjs b/test/fixtures/es-module-url/native.mjs
new file mode 100644
index 0000000000..c8831f9bfe
--- /dev/null
+++ b/test/fixtures/es-module-url/native.mjs
@@ -0,0 +1,2 @@
+// path
+import 'p%61th';