You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In BDD / Gherkin mode, After to be synchronous so it run to completion before the next scenario starts
Scenario 1
After --- run completely before Scenario 2 start
Scenario 2
What do you get instead?
After is asynchronous so it might still running while the next scenario already starting
It seems that the After implementation is based on event which is independent from the promise chain.