Skip to content

Instantly share code, notes, and snippets.

@jamesasu
Created December 1, 2023 03:33
Show Gist options
  • Save jamesasu/a7e7e856383797f07d44ecdc67d9c8c5 to your computer and use it in GitHub Desktop.
Save jamesasu/a7e7e856383797f07d44ecdc67d9c8c5 to your computer and use it in GitHub Desktop.
Need to sleep/wait in a jest test?
test('Wait for 1 second', async () => {
runBeforeTheDelay();
await new Promise((r) => setTimeout(r, 1000));
runAfterTheDelay();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment