aboutsummaryrefslogtreecommitdiff
path: root/tests/lapi.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lapi.js')
-rw-r--r--tests/lapi.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/lapi.js b/tests/lapi.js
index 8a1db31..2f5f459 100644
--- a/tests/lapi.js
+++ b/tests/lapi.js
@@ -561,4 +561,18 @@ test('lua_settable, lua_gettable', function (t) {
"value",
"Correct element(s) on the stack"
);
+});
+
+
+test('print', function (t) {
+ let luaCode = `
+ print("hello world");
+ `, L;
+
+ t.plan(1);
+
+ t.doesNotThrow(function () {
+ L = getState(luaCode);
+ lapi.lua_call(L, 0, -1);
+ }, "Program executed without errors");
}); \ No newline at end of file