mirror of
https://github.com/immich-app/immich.git
synced 2024-12-26 10:50:29 +02:00
25cad79657
* feat: auto-stack burst photos * feat: move stacks to asset stack entity * chore: pin node version with volta in server * chore: update e2e cases * chore: cleanup * feat: migrate existing stacks --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
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(),
|
|
};
|
|
};
|