mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
092a23fd7f
* remove image tagging * updated lock * fixed tests, improved logging * be nice * fixed tests
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import { IMachineLearningRepository } from '@app/domain';
|
|
|
|
export const newMachineLearningRepositoryMock = (): jest.Mocked<IMachineLearningRepository> => {
|
|
return {
|
|
encodeImage: jest.fn(),
|
|
encodeText: jest.fn(),
|
|
detectFaces: jest.fn(),
|
|
};
|
|
};
|