node/test/parallel/test-wasm.mjs
Guy Bedford 4396cf2d45 wasm: enable JSPI
PR-URL: https://github.com/nodejs/node/pull/59941
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2025-09-22 18:12:43 -07:00

45 lines
1.1 KiB
JavaScript

import '../common/index.mjs';
import { strictEqual } from 'node:assert';
import { readSync } from '../common/fixtures.mjs';
// Test Wasm JSPI
{
const asyncImport = async (x) => {
await new Promise((resolve) => setTimeout(resolve, 10));
return x + 42;
};
/**
* wasm/jspi.wasm contains:
*
* (module
* (type (;0;) (func (param i32) (result i32)))
* (import "js" "async" (func $async (;0;) (type 0)))
* (export "test" (func $test))
* (func $test (;1;) (type 0) (param $x i32) (result i32)
* local.get $x
* call $async
* )
* )
*
* Which is the JS equivalent to:
*
* import { async_ } from 'js';
* export function test (val) {
* return async_(val);
* }
*
* JSPI then allows turning this sync style Wasm call into async code
* that suspends on the promise.
*/
const { instance } = await WebAssembly.instantiate(readSync('wasm/jspi.wasm'), {
js: {
async: new WebAssembly.Suspending(asyncImport),
},
});
const promisingExport = WebAssembly.promising(instance.exports.test);
strictEqual(await promisingExport(10), 52);
}