diff options
Diffstat (limited to 'tests/testdata/compile/node_modules_symlink_outside/main.ts')
-rw-r--r-- | tests/testdata/compile/node_modules_symlink_outside/main.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/testdata/compile/node_modules_symlink_outside/main.ts b/tests/testdata/compile/node_modules_symlink_outside/main.ts new file mode 100644 index 000000000..45f681f7c --- /dev/null +++ b/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")); |