-
-
Notifications
You must be signed in to change notification settings - Fork 290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: install same vitest version across packages #6306
Conversation
@@ -112,7 +112,7 @@ export function describeDirectorySpecTest<TestCase extends {meta?: any}, Result> | |||
continue; | |||
} | |||
|
|||
// Use full path here, not just `testSubDirname` to allow usage of `vitest --grep` | |||
// Use full path here, not just `testSubDirname` to allow usage of `vitest -t` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
completely unrelated change, picked that up while reviewing #6222 and since this is a fixup of that PR, might as well include that here
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## unstable #6306 +/- ##
=========================================
Coverage 80.38% 80.38%
=========================================
Files 202 202
Lines 19620 19620
Branches 1176 1176
=========================================
Hits 15771 15771
Misses 3821 3821
Partials 28 28 |
Performance Report✔️ no performance regression detected Full benchmark results
|
🎉 This PR is included in v1.15.0 🎉 |
Motivation
Noticed when running
yarn install
locally on unstable branch it produces a lock file diff. This is due to the fact that we install different vitest versions.I reviewed #6222 and seems to be the issue as the branch was open before we upgraded vitest in #6237.
There is a way to enforce that a branch is rebased / merged against target branch before the PR can be merged. While I don't think this is strictly necessary, we should keep in mind to rebase long lived branches before merging.
Description
Install same vitest version across packages