mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
|
import { IMachineLearningRepository } from '../src';
|
||
|
|
||
|
export const newMachineLearningRepositoryMock = (): jest.Mocked<IMachineLearningRepository> => {
|
||
|
return {
|
||
|
tagImage: jest.fn(),
|
||
|
detectObjects: jest.fn(),
|
||
|
};
|
||
|
};
|