remove async

This commit is contained in:
mertalev
2024-02-29 20:24:29 -05:00
parent 1ea61f0573
commit 84ab5abac4
@@ -32,7 +32,7 @@ export const makeMockWatcher =
} }
} }
} }
return async () => await close?.(); return () => close?.();
}; };
export const newStorageRepositoryMock = (reset = true): jest.Mocked<IStorageRepository> => { export const newStorageRepositoryMock = (reset = true): jest.Mocked<IStorageRepository> => {