summaryrefslogtreecommitdiff
path: root/cli/tests/standalone_runtime_flags.ts
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2021-01-04 23:15:52 +0000
committerGitHub <noreply@github.com>2021-01-05 00:15:52 +0100
commitcbc2108525f3a01f4a944104457939b741c9898b (patch)
tree58f85bcd8998101762623737dc272bff81cad15a /cli/tests/standalone_runtime_flags.ts
parent444eca80a93c2631623578c1febdedb43575a911 (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.ts3
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");