summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/registry/@denotest/cjs-default-export/1.0.0/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/npm/registry/@denotest/cjs-default-export/1.0.0/index.js')
-rw-r--r--cli/tests/testdata/npm/registry/@denotest/cjs-default-export/1.0.0/index.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/cli/tests/testdata/npm/registry/@denotest/cjs-default-export/1.0.0/index.js b/cli/tests/testdata/npm/registry/@denotest/cjs-default-export/1.0.0/index.js
deleted file mode 100644
index ec4ece6b3..000000000
--- a/cli/tests/testdata/npm/registry/@denotest/cjs-default-export/1.0.0/index.js
+++ /dev/null
@@ -1,17 +0,0 @@
-Object.defineProperty(module.exports, "__esModule", {
- value: true
-});
-module.exports["default"] = function() {
- return 1;
-};
-module.exports["named"] = function() {
- return 2;
-};
-
-class MyClass {
- static someStaticMethod() {
- return "static method";
- }
-}
-
-module.exports.MyClass = MyClass;