mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 10:56:47 +01:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { ISmartInfoRepository } from '@app/domain';
|
|
|
|
export const newSmartInfoRepositoryMock = (): jest.Mocked<ISmartInfoRepository> => {
|
|
return {
|
|
upsert: jest.fn(),
|
|
};
|
|
};
|