mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 10:58:53 -07:00
15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
import { IStorageRepository } from '../src';
|
|
|
|
export const newStorageRepositoryMock = (): jest.Mocked<IStorageRepository> => {
|
|
return {
|
|
createReadStream: jest.fn(),
|
|
unlink: jest.fn(),
|
|
unlinkDir: jest.fn(),
|
|
removeEmptyDirs: jest.fn(),
|
|
moveFile: jest.fn(),
|
|
checkFileExists: jest.fn(),
|
|
mkdirSync: jest.fn(),
|
|
checkDiskUsage: jest.fn(),
|
|
};
|
|
};
|