summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-04-13 19:24:15 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-04-13 13:24:15 -0400
commit591b5e4a7dfc1c3537c7a2c7091ebe3890271780 (patch)
tree2a202be9e236cf4c3436a4cbdc2d3164ca6f43a9 /tests
parentd3bd5879c3b1a26cc09a5374bf2b5ee63071fe29 (diff)
Add deno eval subcommand (#2102)
Diffstat (limited to 'tests')
-rw-r--r--tests/029_eval.out1
-rw-r--r--tests/029_eval.test2
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/029_eval.out b/tests/029_eval.out
new file mode 100644
index 000000000..ce0136250
--- /dev/null
+++ b/tests/029_eval.out
@@ -0,0 +1 @@
+hello
diff --git a/tests/029_eval.test b/tests/029_eval.test
new file mode 100644
index 000000000..3b3eb029e
--- /dev/null
+++ b/tests/029_eval.test
@@ -0,0 +1,2 @@
+args: eval console.log("hello")
+output: tests/029_eval.out