Fix tests

This commit is contained in:
Andras Schmelczer 2025-07-12 11:35:06 +01:00
commit 6e27435092
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 4 additions and 8 deletions

View file

@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path');
// Read the actual WASM file and convert to base64 for testing
const wasmPath = path.join(__dirname, '../../pkg/reconcile_bg.wasm');
const wasmPath = path.join(__dirname, '../../pkg/reconcile_text_bg.wasm');
const wasmBuffer = fs.readFileSync(wasmPath);
const wasmBase64 = wasmBuffer.toString('base64');