mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
		
			
				
	
	
		
			13 lines
		
	
	
		
			297 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			297 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { ISharedLinkRepository } from '@app/domain';
 | 
						|
 | 
						|
export const newSharedLinkRepositoryMock = (): jest.Mocked<ISharedLinkRepository> => {
 | 
						|
  return {
 | 
						|
    getAll: jest.fn(),
 | 
						|
    get: jest.fn(),
 | 
						|
    getByKey: jest.fn(),
 | 
						|
    create: jest.fn(),
 | 
						|
    remove: jest.fn(),
 | 
						|
    update: jest.fn(),
 | 
						|
  };
 | 
						|
};
 |