mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 13:44:16 -04:00
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(),
|
|
};
|
|
};
|