mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* refactor(server): media service * merge main --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			8 lines
		
	
	
		
			185 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			185 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { ICommunicationRepository } from '../src';
 | 
						|
 | 
						|
export const newCommunicationRepositoryMock = (): jest.Mocked<ICommunicationRepository> => {
 | 
						|
  return {
 | 
						|
    send: jest.fn(),
 | 
						|
  };
 | 
						|
};
 |