diff options
Diffstat (limited to 'tests/tests.js')
-rw-r--r-- | tests/tests.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/tests.js b/tests/tests.js index 1ad9900..778cbef 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -2,6 +2,7 @@ const lua = require("../src/lua.js"); const lauxlib = require("../src/lauxlib.js"); +const {to_luastring} = require("../src/fengaricore.js"); const toByteCode = function(luaCode) { let L = getState(luaCode); @@ -19,7 +20,7 @@ const getState = function(luaCode) { if (!L) throw Error("unable to create lua_State"); - if (lauxlib.luaL_loadstring(L, lua.to_luastring(luaCode)) !== lua.LUA_OK) + if (lauxlib.luaL_loadstring(L, to_luastring(luaCode)) !== lua.LUA_OK) throw Error(lua.lua_tojsstring(L, -1)); return L; |