mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 20:36:48 +01: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(),
|
||
|
};
|
||
|
};
|