mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05: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(),
 | 
						|
  };
 | 
						|
};
 |