mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
|
import { IViewRepository } from 'src/interfaces/view.interface';
|
||
|
import { Mocked, vitest } from 'vitest';
|
||
|
|
||
|
export const newViewRepositoryMock = (): Mocked<IViewRepository> => {
|
||
|
return {
|
||
|
getAssetsByOriginalPath: vitest.fn(),
|
||
|
getUniqueOriginalPaths: vitest.fn(),
|
||
|
};
|
||
|
};
|