0313565610
Complete redo of data store Introduces live queries and live templates
11 lines
342 B
TypeScript
11 lines
342 B
TypeScript
import { DenoKvPrimitives } from "./deno_kv_primitives.ts";
|
|
import { allTests } from "./kv_primitives.test.ts";
|
|
|
|
Deno.test("Test Deno KV Primitives", async () => {
|
|
const tmpFile = await Deno.makeTempFile();
|
|
const db = new DenoKvPrimitives(await Deno.openKv(tmpFile));
|
|
await allTests(db);
|
|
db.close();
|
|
await Deno.remove(tmpFile);
|
|
});
|