Fix flaky test

pull/719/head
Zef Hemel 2024-02-24 13:02:19 +01:00
parent 7de987fd56
commit 687d1f0679
1 changed files with 4 additions and 1 deletions

View File

@ -5,7 +5,10 @@ import { DataStore } from "./datastore.ts";
import { PrefixedKvPrimitives } from "./prefixed_kv_primitives.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 db = new DenoKvPrimitives(await Deno.openKv(tmpFile));