mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01: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(),
|
|
};
|
|
};
|