diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-01-04 23:15:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 00:15:52 +0100 |
commit | cbc2108525f3a01f4a944104457939b741c9898b (patch) | |
tree | 58f85bcd8998101762623737dc272bff81cad15a /cli/tests/standalone_runtime_flags.ts | |
parent | 444eca80a93c2631623578c1febdedb43575a911 (diff) |
feat(cli/standalone): support runtime flags for deno compile (#8738)
Diffstat (limited to 'cli/tests/standalone_runtime_flags.ts')
-rw-r--r-- | cli/tests/standalone_runtime_flags.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/standalone_runtime_flags.ts b/cli/tests/standalone_runtime_flags.ts new file mode 100644 index 000000000..0154c7f4e --- /dev/null +++ b/cli/tests/standalone_runtime_flags.ts @@ -0,0 +1,3 @@ +console.log(Math.random()); +await Deno.stat("."); +await Deno.create("foo.txt"); |