-
-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
deps: upgrade vitest to 1.4.0 #6570
Conversation
@@ -18,7 +18,9 @@ export default defineConfig({ | |||
path.join(__dirname, "./scripts/vitest/setupFiles/customMatchers.ts"), | |||
path.join(__dirname, "./scripts/vitest/setupFiles/dotenv.ts"), | |||
], | |||
reporters: ["default", "hanging-process"], | |||
reporters: process.env.GITHUB_ACTIONS | |||
? ["verbose", "hanging-process", "github-actions"] |
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.
Changing default
to verbose
will not collapse the passed tests.
@@ -18,7 +18,9 @@ export default defineConfig({ | |||
path.join(__dirname, "./scripts/vitest/setupFiles/customMatchers.ts"), | |||
path.join(__dirname, "./scripts/vitest/setupFiles/dotenv.ts"), | |||
], | |||
reporters: ["default", "hanging-process"], | |||
reporters: process.env.GITHUB_ACTIONS | |||
? ["verbose", "hanging-process", "github-actions"] |
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.
github-actions
reporter will show the failure directly inside the PR.
https://vitest.dev/guide/reporters.html#github-actions-reporter
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## unstable #6570 +/- ##
============================================
+ Coverage 61.39% 61.46% +0.06%
============================================
Files 556 556
Lines 58751 58850 +99
Branches 1848 1850 +2
============================================
+ Hits 36073 36171 +98
Misses 22638 22638
- Partials 40 41 +1 |
Performance Report✔️ no performance regression detected 🚀🚀 Significant benchmark improvement detected
Full benchmark results
|
🎉 This PR is included in v1.18.0 🎉 |
Motivation
Keep the dependencies up-to-date.
Description
Steps to test or reproduce