Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures/es-modules')
-rw-r--r--test/fixtures/es-modules/package-cjs-named-error/fail.cjs3
-rw-r--r--test/fixtures/es-modules/package-cjs-named-error/multi-line.mjs4
2 files changed, 6 insertions, 1 deletions
diff --git a/test/fixtures/es-modules/package-cjs-named-error/fail.cjs b/test/fixtures/es-modules/package-cjs-named-error/fail.cjs
index 40c512ab0e5..cab82d3eb60 100644
--- a/test/fixtures/es-modules/package-cjs-named-error/fail.cjs
+++ b/test/fixtures/es-modules/package-cjs-named-error/fail.cjs
@@ -1,3 +1,4 @@
module.exports = {
- comeOn: 'fhqwhgads'
+ comeOn: 'fhqwhgads',
+ everybody: 'to the limit',
};
diff --git a/test/fixtures/es-modules/package-cjs-named-error/multi-line.mjs b/test/fixtures/es-modules/package-cjs-named-error/multi-line.mjs
new file mode 100644
index 00000000000..a4f80eba042
--- /dev/null
+++ b/test/fixtures/es-modules/package-cjs-named-error/multi-line.mjs
@@ -0,0 +1,4 @@
+import {
+ comeOn,
+ everybody,
+} from './fail.cjs';