mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
10 lines
280 B
TypeScript
10 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(),
|
|
};
|
|
};
|