mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
|
import { IAuditRepository } from '@app/domain';
|
||
|
|
||
|
export const newAuditRepositoryMock = (): jest.Mocked<IAuditRepository> => {
|
||
|
return {
|
||
|
getAfter: jest.fn(),
|
||
|
removeBefore: jest.fn(),
|
||
|
};
|
||
|
};
|