diff options
-rw-r--r-- | packages/bun-wasm/test/node.mjs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/bun-wasm/test/node.mjs b/packages/bun-wasm/test/node.mjs index 92162fa4f..7890a5c6e 100644 --- a/packages/bun-wasm/test/node.mjs +++ b/packages/bun-wasm/test/node.mjs @@ -1,5 +1,8 @@ +// This is not released yet because there are some memory bugs with the WASM build +// It causes syntax errors which don't make any sense +// Most likely, this is an issue with some code expecting 64 bit pointers +// That's also why this test just prints instead of using a test runner import * as Bun from "../index.mjs"; -import process from "process"; await Bun.init(new URL("../bun.wasm", import.meta.url)); |