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
For applications where we do not mock the backend, when using multiple agents, our current strategy of running all agents in parallel is problematic. Since the backend will maintain state, multiple tests running at the same time becomes problematic, because the backend state will not be isolated from each other.
As far as I can see, there are two approaches to solving this problem:
Start an app server for each agent. This seems a bit crazy to me.
Run agents sequentially, rather than in parallel
The text was updated successfully, but these errors were encountered:
For applications where we do not mock the backend, when using multiple agents, our current strategy of running all agents in parallel is problematic. Since the backend will maintain state, multiple tests running at the same time becomes problematic, because the backend state will not be isolated from each other.
As far as I can see, there are two approaches to solving this problem:
The text was updated successfully, but these errors were encountered: