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

133
Vistas
How to test promise before it runs finally with JEST

I have a function like this:

let settings = {
  isRun: false
}
function testPromise(promise) {
  settings.isRun = true;
  return promise.finally(() => settings.isRun = false;)
}

How can test isRun = true when run testPromise before finally expression run. I tried with

it('should isRun true when testPromise running', async () => {
   expect(settings.isRun).toBeFalsy();
   await testPromise(Promise.resolve('run')).then(() => {
     expect(settings.isRun).toBeTruthy();
   }
   expect(settings.isRun).toBeFalsy();

but it does not work

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

I think you can execute but not wait for the promise to observe the intermittent value change you want to see.

it('should isRun true when testPromise running', () => {
    expect(settings.isRun).toBeFalsy();
    const promise = testPromise(Promise.resolve('run'));
    // At this point, promise is not resolved yet, so the callback in finally has not executed yet.
    expect(settings.isRun).toBeTruthy();
    // If you want to test it changed back to fasle
    promise.then(() => {
        expect(settings.isRun).toBeFalsy();
    });
}
about 4 years ago · Juan Pablo Isaza Denunciar
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