mirror of
https://github.com/immich-app/immich.git
synced 2025-02-04 01:09:14 -05:00
84f7ca855a
move domain interfaces
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
import { IAuditRepository } from 'src/interfaces/audit.repository';
|
|
|
|
export const newAuditRepositoryMock = (): jest.Mocked<IAuditRepository> => {
|
|
return {
|
|
getAfter: jest.fn(),
|
|
removeBefore: jest.fn(),
|
|
};
|
|
};
|