summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/compile/node_modules_symlink_outside/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/compile/node_modules_symlink_outside/main.ts')
-rw-r--r--cli/tests/testdata/compile/node_modules_symlink_outside/main.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/compile/node_modules_symlink_outside/main.ts b/cli/tests/testdata/compile/node_modules_symlink_outside/main.ts
new file mode 100644
index 000000000..45f681f7c
--- /dev/null
+++ b/cli/tests/testdata/compile/node_modules_symlink_outside/main.ts
@@ -0,0 +1,6 @@
+import { getValue, setValue } from "npm:@denotest/esm-basic";
+
+setValue(4);
+
+console.log(getValue());
+console.log(Deno.readTextFileSync("./node_modules/test.txt"));