Fix flaky test
parent
7de987fd56
commit
687d1f0679
|
@ -5,7 +5,10 @@ import { DataStore } from "./datastore.ts";
|
||||||
import { PrefixedKvPrimitives } from "./prefixed_kv_primitives.ts";
|
import { PrefixedKvPrimitives } from "./prefixed_kv_primitives.ts";
|
||||||
import { sleep } from "$lib/async.ts";
|
import { sleep } from "$lib/async.ts";
|
||||||
|
|
||||||
Deno.test("DataStore MQ", async () => {
|
Deno.test("DataStore MQ", {
|
||||||
|
sanitizeResources: false,
|
||||||
|
sanitizeOps: false,
|
||||||
|
}, async () => {
|
||||||
const tmpFile = await Deno.makeTempFile();
|
const tmpFile = await Deno.makeTempFile();
|
||||||
const db = new DenoKvPrimitives(await Deno.openKv(tmpFile));
|
const db = new DenoKvPrimitives(await Deno.openKv(tmpFile));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue