hara-native 0.1.8

HAL-free native host runtime and package launcher for Hara
Documentation
1
2
3
4
5
6
7
8
import { expect, test } from "@playwright/test";

test("SQLite OPFS persists an acknowledged receipt across worker replacement", async ({ page }) => {
  await page.goto("/rust/web/sqlite-browser.html");
  await expect
    .poll(() => page.evaluate(() => window.sqliteOpfsConformance))
    .toEqual({ input: 42, firstDelivery: 1, redelivery: 0, acknowledged: 1 });
});