mirror of
https://github.com/immich-app/immich.git
synced 2025-01-08 12:56:48 +01: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(),
|
||
|
};
|
||
|
};
|