diff options
Diffstat (limited to 'tests/specs/run/env_file/env_file.ts')
-rw-r--r-- | tests/specs/run/env_file/env_file.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/specs/run/env_file/env_file.ts b/tests/specs/run/env_file/env_file.ts new file mode 100644 index 000000000..48488ce72 --- /dev/null +++ b/tests/specs/run/env_file/env_file.ts @@ -0,0 +1,3 @@ +console.log(Deno.env.get("FOO")); +console.log(Deno.env.get("ANOTHER_FOO")); +console.log(Deno.env.get("MULTILINE")); |