summaryrefslogtreecommitdiff
path: root/tests/testdata/run/add.cjs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/run/add.cjs')
-rw-r--r--tests/testdata/run/add.cjs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/testdata/run/add.cjs b/tests/testdata/run/add.cjs
new file mode 100644
index 000000000..2a886fbc1
--- /dev/null
+++ b/tests/testdata/run/add.cjs
@@ -0,0 +1,3 @@
+module.exports.add = function (a, b) {
+ return a + b;
+};