mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
b588a87d4a
rename domain repositories
10 lines
278 B
TypeScript
10 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(),
|
|
};
|
|
};
|