/* Runs the conformance suite against the sqlite-wasm driver. In Node there is no OPFS, so the driver falls back to an in-memory database — same code, same SQL, same migrations as the browser's OPFS-backed one. The Capacitor driver is exercised on a device; point conformanceSuite() at openNativeDb() from an on-device test to do it. */ import { SqliteWasmDb } from "@app/db/sqlite-wasm-core.js"; import { conformanceSuite } from "./conformance.js"; conformanceSuite("sqlite-wasm (in-memory)", () => SqliteWasmDb.open({ memory: true }));