Poindexter/npm/poindexter-wasm/smoke.mjs

26 lines
918 B
JavaScript
Raw Normal View History

// Minimal Node smoke test for the WASM loader.
// Assumes npm-pack has prepared npm/poindexter-wasm with loader and dist assets.
import { init } from './loader.js';
(async function () {
try {
const px = await init({
wasmURL: new URL('dist/poindexter.wasm', import.meta.url),
wasmExecURL: new URL('dist/wasm_exec.js', import.meta.url),
});
const ver = await px.version();
if (!ver || typeof ver !== 'string') throw new Error('version not string');
const tree = await px.newTree(2);
await tree.insert({ id: 'a', coords: [0, 0], value: 'A' });
await tree.insert({ id: 'b', coords: [1, 0], value: 'B' });
const nn = await tree.nearest([0.9, 0.1]);
if (!nn || !nn.point) throw new Error('nearest failed');
console.log('WASM smoke ok:', ver, 'nearest.id=', nn.point.id);
} catch (err) {
console.error('WASM smoke failed:', err);
process.exit(1);
}
})();