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
When you run 1 instance of the vitest-runner in multiple projects in parallel, you get interference in the results. For example:
cd e2e
npm run test -- vitest-*
This should be a pretty straightforward fix: use the cwd to communicate. We tried that before, but before we did these changes: #4043 (comment). With these changes: using the cwd would probably work.
The text was updated successfully, but these errors were encountered:
Base the communication directory of the vitest runner on the current working directory (cwd) rather than the than the `node_modules/@stryker-mutator/vitest-runner` directory.
Fixes#4214
Summary
When you run 1 instance of the
vitest-runner
in multiple projects in parallel, you get interference in the results. For example:This should be a pretty straightforward fix: use the cwd to communicate. We tried that before, but before we did these changes: #4043 (comment). With these changes: using the cwd would probably work.
The text was updated successfully, but these errors were encountered: