-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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
test_runner: change ts default glob #57359
test_runner: change ts default glob #57359
Conversation
Review requested:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #57359 +/- ##
==========================================
+ Coverage 90.20% 90.21% +0.01%
==========================================
Files 630 630
Lines 185307 185307
Branches 36271 36267 -4
==========================================
+ Hits 167160 167181 +21
- Misses 11085 11089 +4
+ Partials 7062 7037 -25
🚀 New features to boost your workflow:
|
fd014be
to
844d7b0
Compare
844d7b0
to
464688e
Compare
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.
lgtm
I have a rough feeling this is semver-major.
Since ts is experimental its should be fine, also from my pov we are fixing a bug. |
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.
lgtm
For v24.0, can we remove the restriction requiring a |
I think the issue is that people keep their |
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.
LGTM!
Landed in 9df0ff7 |
This PR changes the default glob for matching.ts files.
Basically will match only
*test.{ts,mts,cts}
inside the test folder.This is the safest and middle ground to avoid breaking users.
I'd not consider a breaking change in v23 since typescript support is experimental.
Fixes: #56546