mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00: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(),
|
||
|
|
};
|
||
|
|
};
|