jest test async code
March 2022
# Notes
- Add async to the function that gets passed to the test - Use await when calling the function under test - Make the function under test `async` - Add await as necessary in the function under test
# Test file
const sum =
# File under test
module.exports = sumend of line