mirror of
https://github.com/immich-app/immich.git
synced 2024-12-24 10:37:28 +02:00
10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
|
import { IUserTokenRepository } from '../src';
|
||
|
|
||
|
export const newUserTokenRepositoryMock = (): jest.Mocked<IUserTokenRepository> => {
|
||
|
return {
|
||
|
create: jest.fn(),
|
||
|
delete: jest.fn(),
|
||
|
get: jest.fn(),
|
||
|
};
|
||
|
};
|