aboutsummaryrefslogtreecommitdiff
path: root/tests/lapi.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lapi.js')
-rw-r--r--tests/lapi.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/lapi.js b/tests/lapi.js
index 561b774..30366d5 100644
--- a/tests/lapi.js
+++ b/tests/lapi.js
@@ -490,27 +490,4 @@ test('lua_settable, lua_gettable', function (t) {
"value",
"Correct element(s) on the stack"
);
-});
-
-
-test('print', function (t) {
- let luaCode = `
- print("hello", "world", 123)
- `, L;
-
- t.plan(1);
-
- t.doesNotThrow(function () {
-
- let bc = toByteCode(luaCode).dataView;
-
- L = lauxlib.luaL_newstate();
-
- linit.luaL_openlibs(L);
-
- lapi.lua_load(L, bc, "test-lua_load")
-
- lapi.lua_call(L, 0, 1);
-
- }, "JS Lua program ran without error");
}); \ No newline at end of file