mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 02:49:01 -07:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import { IMachineLearningRepository } from '../src';
|
|
|
|
export const newMachineLearningRepositoryMock = (): jest.Mocked<IMachineLearningRepository> => {
|
|
return {
|
|
tagImage: jest.fn(),
|
|
detectObjects: jest.fn(),
|
|
encodeImage: jest.fn(),
|
|
encodeText: jest.fn(),
|
|
};
|
|
};
|