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
		
			
				
	
	
		
			8 lines
		
	
	
		
			180 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			180 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { ISmartInfoRepository } from '@app/domain';
 | 
						|
 | 
						|
export const newSmartInfoRepositoryMock = (): jest.Mocked<ISmartInfoRepository> => {
 | 
						|
  return {
 | 
						|
    upsert: jest.fn(),
 | 
						|
  };
 | 
						|
};
 |