mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
50c9bc0336
* chore: jest => vitest * chore: replace jest-when
14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
import { IKeyRepository } from 'src/interfaces/api-key.interface';
|
|
import { Mocked, vitest } from 'vitest';
|
|
|
|
export const newKeyRepositoryMock = (): Mocked<IKeyRepository> => {
|
|
return {
|
|
create: vitest.fn(),
|
|
update: vitest.fn(),
|
|
delete: vitest.fn(),
|
|
getKey: vitest.fn(),
|
|
getById: vitest.fn(),
|
|
getByUserId: vitest.fn(),
|
|
};
|
|
};
|