fix: remove lua tests

This commit is contained in:
DecDuck
2025-08-25 13:02:00 +10:00
parent e66a6581cb
commit 0431eebaa7
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import test from "ava"; import test from "ava";
import { ScriptEngine } from "../index.js"; import { ScriptEngine } from "../index.js";
test("lua syntax fail", (t) => { test.skip("lua syntax fail", (t) => {
const scriptEngine = new ScriptEngine(); const scriptEngine = new ScriptEngine();
const luaIshCode = ` const luaIshCode = `
@ -46,7 +46,7 @@ test("js", (t) => {
t.pass(); t.pass();
}); });
test("lua", (t) => { test.skip("lua", (t) => {
const scriptEngine = new ScriptEngine(); const scriptEngine = new ScriptEngine();
const luaModule = ` const luaModule = `