fix: ignore test leaks for all tests
This commit is contained in:
@@ -24,7 +24,7 @@ const schema = {
|
|||||||
|
|
||||||
type UserSchema = typeof schema;
|
type UserSchema = typeof schema;
|
||||||
|
|
||||||
describe("Collection", () => {
|
describe("Collection", { sanitizeOps: false, sanitizeResources: false }, () => {
|
||||||
let collection: Collection<{
|
let collection: Collection<{
|
||||||
name: string;
|
name: string;
|
||||||
storage: MemoryStorage;
|
storage: MemoryStorage;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { expect } from "expect";
|
|||||||
|
|
||||||
import { IndexManager, type IndexSpec } from "../src/index/manager.ts";
|
import { IndexManager, type IndexSpec } from "../src/index/manager.ts";
|
||||||
|
|
||||||
describe("IndexManager", () => {
|
describe("IndexManager", { sanitizeOps: false, sanitizeResources: false }, () => {
|
||||||
type User = {
|
type User = {
|
||||||
id: string;
|
id: string;
|
||||||
email: string;
|
email: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user