-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Disable the display of errors messages when rediscovering of tests fail in response to changes to files #1133
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1133 +/- ##
==========================================
+ Coverage 71.81% 71.86% +0.05%
==========================================
Files 260 260
Lines 11898 11898
Branches 2112 2112
==========================================
+ Hits 8545 8551 +6
+ Misses 3226 3223 -3
+ Partials 127 124 -3
Continue to review full report at Codecov.
|
@brettcannon ping |
news/1 Enhancements/704.md
Outdated
@@ -0,0 +1 @@ | |||
Disable the display of errors messages when rediscovering of tests fail in response to changes to files. |
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.
"to files, e.g. don't show a message if there's a syntax error in the test code."
const discoveryPromise = testManager.discoverTests(cmdSource, ignoreCache, false, userInitiated); | ||
testResultDisplay.displayDiscoverStatus(discoveryPromise) | ||
testResultDisplay = testResultDisplay ? testResultDisplay : new TestResultDisplay(onDidChange); | ||
const discoveryPromise = testManager.discoverTests(cmdSource, ignoreCache, quietMode, userInitiated); |
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.
I don't see a change to this API, so I assume this is what false
used to represent?
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.
Yes
Fixes #704
@brettcannon
This pull request: