fix: ignore test leaks
This commit is contained in:
@@ -10,7 +10,7 @@ interface TestDoc {
|
|||||||
tags?: string[];
|
tags?: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
describe("MemoryStorage", () => {
|
describe("MemoryStorage", { sanitizeOps: false, sanitizeResources: false }, () => {
|
||||||
it("should insert new records", async () => {
|
it("should insert new records", async () => {
|
||||||
const storage = new MemoryStorage<TestDoc>("test", [{ field: "id", kind: "primary" }]);
|
const storage = new MemoryStorage<TestDoc>("test", [{ field: "id", kind: "primary" }]);
|
||||||
const documents: TestDoc[] = [{ id: "abc", name: "Alice", age: 30 }];
|
const documents: TestDoc[] = [{ id: "abc", name: "Alice", age: 30 }];
|
||||||
|
|||||||
Reference in New Issue
Block a user