Jest - Testing Asychronous Code
Jest - Testing Asychronous Code
Testing Asychronous Code
1 | const add = (a, b) => { |
The callback function for the first test case accepts a done
parameter. This lets Jest know that the test function contains asynchronous code. Jest won’t determine if the test passed or failed until done
is called. In the example below, then
is called to run some code after the numbers are added. This is where the assertion is added and it’s where done
is called.
1 | test('Should add two numbers', (done)=>{ |
Using async/await
is also possible.
1 | test('Should add two numbers async/await', async()=>{ |
Ref : The Complete Node.js Dev Course by Andrew Mead