mirror of
https://github.com/immich-app/immich.git
synced 2024-12-14 12:00:55 +02:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import { IFaceRepository } from '@app/domain';
|
|
|
|
export const newFaceRepositoryMock = (): jest.Mocked<IFaceRepository> => {
|
|
return {
|
|
getAll: jest.fn(),
|
|
getByIds: jest.fn(),
|
|
create: jest.fn(),
|
|
};
|
|
};
|