Skip to content

Instantly share code, notes, and snippets.

@endymion1818
Last active September 23, 2021 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save endymion1818/7537cbe62f5bc48ada04261aeb4b727b to your computer and use it in GitHub Desktop.
Save endymion1818/7537cbe62f5bc48ada04261aeb4b727b to your computer and use it in GitHub Desktop.
stackoverflow-66579559
// I had issues with this
it('should work', async () => {
await waitFor(() => {
// assertion
})
});
// this worked for me
it('should work', () => {
// assertion
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment