Do async afterEach calls resolve prior to completing? #1825
-
If I have an async function in an afterEach call does it resolve the promise before continuing on to the next route call? Looking at the following code compared to the beforeEach it does not seem so but I wanted to confirm: |
Beta Was this translation helpful? Give feedback.
Answered by
posva
May 2, 2023
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
posva
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
afterEach()
happens after the navigation, so it's non blocking.beforeEach()
anndbeforeResolve()
are the non blocking guards