import { ICommunicationRepository } from '@app/domain'; export const newCommunicationRepositoryMock = (): jest.Mocked => { return { send: jest.fn(), broadcast: jest.fn(), addEventListener: jest.fn(), }; };