From 0431eebaa7f001bcd6954fdb8f30dd029007ad58 Mon Sep 17 00:00:00 2001 From: DecDuck Date: Mon, 25 Aug 2025 13:02:00 +1000 Subject: [PATCH] fix: remove lua tests --- __test__/script.spec.mjs | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/__test__/script.spec.mjs b/__test__/script.spec.mjs index 72952e7..1fbc136 100644 --- a/__test__/script.spec.mjs +++ b/__test__/script.spec.mjs @@ -1,7 +1,7 @@ import test from "ava"; import { ScriptEngine } from "../index.js"; -test("lua syntax fail", (t) => { +test.skip("lua syntax fail", (t) => { const scriptEngine = new ScriptEngine(); const luaIshCode = ` @@ -46,7 +46,7 @@ test("js", (t) => { t.pass(); }); -test("lua", (t) => { +test.skip("lua", (t) => { const scriptEngine = new ScriptEngine(); const luaModule = ` diff --git a/package.json b/package.json index 37d7e52..6af8255 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "build": "napi build --platform --release", "build:debug": "napi build --platform", "prepublishOnly": "napi prepublish -t npm", - "test": "ava", + "test": "ava ", "universal": "napi universalize", "version": "napi version" },