1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-10 11:40:53 +02:00
immich/server/test/repositories/api-key.repository.mock.ts
2024-03-21 06:59:49 -05:00

13 lines
304 B
TypeScript

import { IKeyRepository } from 'src/interfaces/api-key.interface';
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(),
};
};