mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import { IAuditRepository } from 'src/interfaces/audit.interface';
|
|
|
|
export const newAuditRepositoryMock = (): jest.Mocked<IAuditRepository> => {
|
|
return {
|
|
getAfter: jest.fn(),
|
|
removeBefore: jest.fn(),
|
|
};
|
|
};
|