mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
import { IKeyRepository } from 'src/interfaces/api-key.repository';
|
|
|
|
export const newKeyRepositoryMock = (): jest.Mocked<IKeyRepository> => {
|
|
return {
|
|
create: jest.fn(),
|
|
update: jest.fn(),
|
|
delete: jest.fn(),
|
|
getKey: jest.fn(),
|
|
getById: jest.fn(),
|
|
getByUserId: jest.fn(),
|
|
};
|
|
};
|