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
Currently, the global setup is implemented as a Vite plugin which doesn't allow us to skip it when all workspace projects are skipped. This should help fix #3255.
Suggested solution
It would be nice to instead implement global setup calls as methods on a workspace project instance to call it only if there are filtered tests running:
classWorkspaceProject{_globalSetupCalled=false// called every time we run `runTests` in case new tests are added in watch modeinitGlobalSetup(){}// called inside .closeteardownGlobalSetup(){}
Clear and concise description of the problem
Currently, the global setup is implemented as a Vite plugin which doesn't allow us to skip it when all workspace projects are skipped. This should help fix #3255.
Suggested solution
It would be nice to instead implement global setup calls as methods on a workspace project instance to call it only if there are filtered tests running:
Alternative
No response
Additional context
No response
Validations
The text was updated successfully, but these errors were encountered: