mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 02:49:01 -07:00
1c2d83e2c7
* refactor(server): job handlers * chore: remove comment * chore: add comments for
15 lines
398 B
TypeScript
15 lines
398 B
TypeScript
import { IStorageRepository } from '../src';
|
|
|
|
export const newStorageRepositoryMock = (): jest.Mocked<IStorageRepository> => {
|
|
return {
|
|
createReadStream: jest.fn(),
|
|
unlink: jest.fn(),
|
|
unlinkDir: jest.fn().mockResolvedValue(true),
|
|
removeEmptyDirs: jest.fn(),
|
|
moveFile: jest.fn(),
|
|
checkFileExists: jest.fn(),
|
|
mkdirSync: jest.fn(),
|
|
checkDiskUsage: jest.fn(),
|
|
};
|
|
};
|