aboutsummaryrefslogtreecommitdiff
path: root/tests/debug-cli.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/debug-cli.js')
-rw-r--r--tests/debug-cli.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/debug-cli.js b/tests/debug-cli.js
deleted file mode 100644
index aa6847f..0000000
--- a/tests/debug-cli.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";
-
-const lapi = require("../src/lapi.js");
-const lauxlib = require("../src/lauxlib.js");
-const lua = require('../src/lua.js');
-const linit = require('../src/linit.js');
-
-let luaCode = `
- a = "debug me"
- debug.debug()
-`, L;
-
-L = lauxlib.luaL_newstate();
-
-linit.luaL_openlibs(L);
-
-lauxlib.luaL_loadstring(L, lua.to_luastring(luaCode));
-
-lapi.lua_call(L, 0, -1);