• Empleos
  • Sobre nosotros
  • profesionales
    • Inicio
    • Empleos
    • Cursos y retos
    • Preguntas
    • Profesores
  • empresas
    • Inicio
    • Publicar vacante
    • Nuestro proceso
    • Precios
    • Pruebas Online
    • Nómina
    • Blog
    • Comercial
    • Calculadora de salario

0

221
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) ;
   }
  
}
almost 3 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 Nuestro proceso Comercial
Legal
Términos y condiciones Política de privacidad
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recomiéndame algunas ofertas
Necesito ayuda