summaryrefslogtreecommitdiff
path: root/std/node/tests/cjs
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/tests/cjs')
l---------std/node/tests/cjs/dir1
-rw-r--r--std/node/tests/cjs/subdir/dir/index.js4
2 files changed, 5 insertions, 0 deletions
diff --git a/std/node/tests/cjs/dir b/std/node/tests/cjs/dir
new file mode 120000
index 000000000..abec30059
--- /dev/null
+++ b/std/node/tests/cjs/dir
@@ -0,0 +1 @@
+./subdir/dir \ No newline at end of file
diff --git a/std/node/tests/cjs/subdir/dir/index.js b/std/node/tests/cjs/subdir/dir/index.js
new file mode 100644
index 000000000..0b4d11386
--- /dev/null
+++ b/std/node/tests/cjs/subdir/dir/index.js
@@ -0,0 +1,4 @@
+// deno-lint-ignore-file no-undef
+const C = require("../cjs_c");
+
+module.exports = { C };