mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 09:15:35 +03:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
|
|
import { IStorageRepository } from '../src';
|
||
|
|
|
||
|
|
export const newStorageRepositoryMock = (): jest.Mocked<IStorageRepository> => {
|
||
|
|
return {
|
||
|
|
createReadStream: jest.fn(),
|
||
|
|
};
|
||
|
|
};
|