immich/server/libs/domain/test/machine-learning.repository.mock.ts
2023-05-17 12:07:17 -05:00

12 lines
313 B
TypeScript

import { IMachineLearningRepository } from '../src';
export const newMachineLearningRepositoryMock = (): jest.Mocked<IMachineLearningRepository> => {
return {
classifyImage: jest.fn(),
detectObjects: jest.fn(),
encodeImage: jest.fn(),
encodeText: jest.fn(),
detectFaces: jest.fn(),
};
};