mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 17:25:35 +03:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
|
|
import { IAssetStackRepository } from '@app/domain';
|
||
|
|
|
||
|
|
export const newAssetStackRepositoryMock = (): jest.Mocked<IAssetStackRepository> => {
|
||
|
|
return {
|
||
|
|
create: jest.fn(),
|
||
|
|
update: jest.fn(),
|
||
|
|
delete: jest.fn(),
|
||
|
|
getById: jest.fn(),
|
||
|
|
};
|
||
|
|
};
|