[TS] Change paths to liblightningjs.wasm to be in ts/
[ldk-java] / ts / test / browser.mjs
index fecaa3eccdd3f0d5f5d011f875a4defb9b33d0b2..03b5141415f860e53d4cdc9b31c1bfbdf0e1e086 100644 (file)
@@ -5,9 +5,9 @@ for (const browserType of [chromium, firefox]) { // We'd like to test webkit, bu
        const browser = await browserType.launch();
        const context = await browser.newContext();
        const page = await context.newPage();
-       await page.goto('http://localhost:8000/ts/test/index.html');
+       await page.goto('http://localhost:8000/test/index.html');
        const ret = await page.evaluate(() => {
-               return test_runner('../../liblightningjs.wasm');
+               return test_runner('../liblightningjs.wasm');
        });
        assert(ret);