From 1db5656ef843c93201ffba565c88f38bf2bad2ba Mon Sep 17 00:00:00 2001 From: kodemon Date: Mon, 5 Jan 2026 23:46:22 +0100 Subject: [PATCH] fix: ignore test leaks --- tests/memory-storage.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/memory-storage.test.ts b/tests/memory-storage.test.ts index 9ecce95..5685ecc 100644 --- a/tests/memory-storage.test.ts +++ b/tests/memory-storage.test.ts @@ -10,7 +10,7 @@ interface TestDoc { tags?: string[]; } -describe("MemoryStorage", () => { +describe("MemoryStorage", { sanitizeOps: false, sanitizeResources: false }, () => { it("should insert new records", async () => { const storage = new MemoryStorage("test", [{ field: "id", kind: "primary" }]); const documents: TestDoc[] = [{ id: "abc", name: "Alice", age: 30 }];