mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
30f499cf2e
update server to use absolute import paths
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
import { IKeyRepository } from 'src/domain/repositories/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(),
|
|
};
|
|
};
|