From 8f87d011010f3720ef1a27ad4f0df0b9bc99611f Mon Sep 17 00:00:00 2001 From: Sebastian Miasojed Date: Mon, 27 Jan 2025 20:15:40 +0100 Subject: [PATCH] Enable bun tests --- js/tests/node.test.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tests/node.test.mjs b/js/tests/node.test.mjs index ec93a35..0765df9 100644 --- a/js/tests/node.test.mjs +++ b/js/tests/node.test.mjs @@ -33,7 +33,7 @@ describe("Compile Function Tests", function () { ).to.have.property("bytecode"); }); - if (typeof globalThis.Bun == "undefined") { + if (typeof globalThis.Bun == "undefined" || true) { // Running this test with Bun on a Linux host causes: // RuntimeError: Out of bounds memory access (evaluating 'getWasmTableEntry(index)(a1, a2, a3, a4, a5)') // Once this issue is resolved, the test will be re-enabled.