silverbullet/packages/plugos/syscalls/store.dex_deno.test.ts

10 lines
318 B
TypeScript

import { SQLite3 } from "../../../mod.ts";
import { storeSyscalls } from "./store.dex_deno.ts";
Deno.test("store.dex", async () => {
const db = new SQLite3(":memory:");
const syscalls = storeSyscalls(db, "test");
const fakeCtx = {} as any;
await syscalls["store.put"](fakeCtx, "key", { value: "value" });
});