mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { ICommunicationRepository } from '@app/domain';
|
|
|
|
export const newCommunicationRepositoryMock = (): jest.Mocked<ICommunicationRepository> => {
|
|
return {
|
|
send: jest.fn(),
|
|
};
|
|
};
|