mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			208 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			208 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { IFaceRepository } from '../src';
 | 
						|
 | 
						|
export const newFaceRepositoryMock = (): jest.Mocked<IFaceRepository> => {
 | 
						|
  return {
 | 
						|
    getAll: jest.fn(),
 | 
						|
    getByIds: jest.fn(),
 | 
						|
    create: jest.fn(),
 | 
						|
  };
 | 
						|
};
 |