0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-07 00:50:23 -05:00

remove async

This commit is contained in:
mertalev 2024-02-29 20:24:29 -05:00
parent 1ea61f0573
commit 84ab5abac4
No known key found for this signature in database
GPG key ID: 9181CD92C0A1C5E3

View file

@ -32,7 +32,7 @@ export const makeMockWatcher =
}
}
}
return async () => await close?.();
return () => close?.();
};
export const newStorageRepositoryMock = (reset = true): jest.Mocked<IStorageRepository> => {