Files
immich/server/libs/domain/test/api-key.repository.mock.ts
2023-05-23 15:40:04 -05:00

13 lines
278 B
TypeScript

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