mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 09:13:15 +03: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(),
|
||
|
|
};
|
||
|
|
};
|