mirror of
https://github.com/Drop-OSS/droplet.git
synced 2025-11-09 20:12:18 +10:00
63 lines
1.1 KiB
JavaScript
63 lines
1.1 KiB
JavaScript
import test from "ava";
|
|
import { ScriptEngine } from "../index.js";
|
|
|
|
test.skip("lua syntax fail", (t) => {
|
|
const scriptEngine = new ScriptEngine();
|
|
|
|
const luaIshCode = `
|
|
print("hello world);
|
|
`;
|
|
|
|
try {
|
|
const script = scriptEngine.buildLuaScript(luaIshCode);
|
|
} catch {
|
|
return t.pass();
|
|
}
|
|
t.fail();
|
|
});
|
|
|
|
test("js syntax fail", (t) => {
|
|
const scriptEngine = new ScriptEngine();
|
|
|
|
const jsIshCode = `
|
|
const v = "hello world;
|
|
`;
|
|
|
|
try {
|
|
const script = scriptEngine.buildJsScript(jsIshCode);
|
|
} catch {
|
|
return t.pass();
|
|
}
|
|
t.fail();
|
|
});
|
|
|
|
test("js", (t) => {
|
|
const scriptEngine = new ScriptEngine();
|
|
|
|
const jsModule = `
|
|
const v = "1" + "2";
|
|
["1", "2", "3", v]
|
|
`;
|
|
|
|
const script = scriptEngine.buildJsScript(jsModule);
|
|
|
|
scriptEngine.fetchStrings(script);
|
|
|
|
t.pass();
|
|
});
|
|
|
|
test.skip("lua", (t) => {
|
|
const scriptEngine = new ScriptEngine();
|
|
|
|
const luaModule = `
|
|
local arr = {"1", "2"};
|
|
return arr;
|
|
`;
|
|
|
|
const script = scriptEngine.buildLuaScript(luaModule);
|
|
|
|
scriptEngine.fetchStrings(script);
|
|
|
|
t.pass();
|
|
});
|