diff options
Diffstat (limited to 'tests/specs/npm/future_node_modules_dir_setting/main.ts')
-rw-r--r-- | tests/specs/npm/future_node_modules_dir_setting/main.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/specs/npm/future_node_modules_dir_setting/main.ts b/tests/specs/npm/future_node_modules_dir_setting/main.ts new file mode 100644 index 000000000..99972873b --- /dev/null +++ b/tests/specs/npm/future_node_modules_dir_setting/main.ts @@ -0,0 +1,4 @@ +import { getValue, setValue } from "@denotest/esm-basic"; + +setValue(2); +console.log(getValue()); |