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

104
Vistas
How do we test asynchronous middleware with asynchronous side effects in Javascript

So my middleware is somewhat like this:

const mw = async (req, res, next) => {
    await someAsyncWork();
    res.on("finish", async () => {
        await someAsyncCleanup();
    });
    next();
}

Here testing someAsyncWork() is quite easy as this is done in a sequential manner. But as you can see, I am listening to the finish event with an async listener. Testing whether the cleanup was done properly is a bit problematic. Are this kind of scenarios not testable or is there any better practice to avoid these scenarios. Or as the last resort, should someone use stubs as a replacement just to check if the listener is invoked and test the someAsyncCleanup separately?

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