Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

130
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!