import { ICommunicationRepository } from 'src/domain/repositories/communication.repository'; export const newCommunicationRepositoryMock = (): jest.Mocked => { return { send: jest.fn(), broadcast: jest.fn(), on: jest.fn(), sendServerEvent: jest.fn(), emit: jest.fn(), emitAsync: jest.fn(), }; };