mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 10:58:53 -07:00
6745826f35
* refactor(server): media service * merge main --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
import { ICommunicationRepository } from '../src';
|
|
|
|
export const newCommunicationRepositoryMock = (): jest.Mocked<ICommunicationRepository> => {
|
|
return {
|
|
send: jest.fn(),
|
|
};
|
|
};
|