Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

319
Vistas
TypeError: this.io.in(...).emit is not a function

I mocked in and emit to test this.io.in(room).emit(eventName, result); using jest

this.io.in(room).emit(eventName, result);

this.io.in(room) is working well but I am not sure how to deal with .emit(eventName, result);

here is code

export interface ServerToClientEvents {
 
  [EVENTNAME]: (payload: payload[]) => void;
}
import {   BroadcastOperator, Server } from "socket.io";
import { ServerToClientEvents } from "../../common/Interfaces";

export class MockIo extends Server {
  hasEmitted = false;
  hasEmittedData: string[] = [];
  hasEmittedEventName: string | symbol = "";
  room: string | string[];

  constructor() {
    super();
  }

  emit(event: string | symbol, ...args: any[]): boolean {
    this.hasEmitted = true;
    this.hasEmittedData = args;
    this.hasEmittedEventName = event;
    return true;
  }
 
   in(room: string | string[]): BroadcastOperator<ServerToClientEvents,any> {
     this.room = room;

      return this.emit.bind(this) ;
   }
  
}
about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda