mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 10:58:53 -07:00
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
|
import { ISmartInfoRepository } from '../src';
|
||
|
|
||
|
export const newSmartInfoRepositoryMock = (): jest.Mocked<ISmartInfoRepository> => {
|
||
|
return {
|
||
|
upsert: jest.fn(),
|
||
|
};
|
||
|
};
|