mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:49:11 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			569 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			569 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { ILibraryRepository } from 'src/interfaces/library.interface';
 | |
| import { Mocked, vitest } from 'vitest';
 | |
| 
 | |
| export const newLibraryRepositoryMock = (): Mocked<ILibraryRepository> => {
 | |
|   return {
 | |
|     get: vitest.fn(),
 | |
|     getCountForUser: vitest.fn(),
 | |
|     create: vitest.fn(),
 | |
|     delete: vitest.fn(),
 | |
|     softDelete: vitest.fn(),
 | |
|     update: vitest.fn(),
 | |
|     getStatistics: vitest.fn(),
 | |
|     getDefaultUploadLibrary: vitest.fn(),
 | |
|     getUploadLibraryCount: vitest.fn(),
 | |
|     getAssetIds: vitest.fn(),
 | |
|     getAllDeleted: vitest.fn(),
 | |
|     getAll: vitest.fn(),
 | |
|   };
 | |
| };
 |