mirror of
https://github.com/immich-app/immich.git
synced 2025-01-03 13:09:27 +02:00
b588a87d4a
rename domain repositories
11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
import { IAssetStackRepository } from 'src/interfaces/asset-stack.interface';
|
|
|
|
export const newAssetStackRepositoryMock = (): jest.Mocked<IAssetStackRepository> => {
|
|
return {
|
|
create: jest.fn(),
|
|
update: jest.fn(),
|
|
delete: jest.fn(),
|
|
getById: jest.fn(),
|
|
};
|
|
};
|