summaryrefslogtreecommitdiff
path: root/tests/testdata/npm/registry/@denotest/cjs-reexport-collision/1.0.0/other_file.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/npm/registry/@denotest/cjs-reexport-collision/1.0.0/other_file.js')
-rw-r--r--tests/testdata/npm/registry/@denotest/cjs-reexport-collision/1.0.0/other_file.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/testdata/npm/registry/@denotest/cjs-reexport-collision/1.0.0/other_file.js b/tests/testdata/npm/registry/@denotest/cjs-reexport-collision/1.0.0/other_file.js
deleted file mode 100644
index 3d8f7e812..000000000
--- a/tests/testdata/npm/registry/@denotest/cjs-reexport-collision/1.0.0/other_file.js
+++ /dev/null
@@ -1,10 +0,0 @@
-"use strict";
-class Hello {
- sayHello() {
- console.log("Hi.");
- }
-}
-// conflict will be with __esModule
-Object.defineProperty(exports, "__esModule", { value: true });
-exports.hello = new Hello();
-exports.default = new Hello();