-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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: report error on missing sourcemap source #55037
test_runner: report error on missing sourcemap source #55037
Conversation
Review requested:
|
3723a8d
to
4badc52
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #55037 +/- ##
=======================================
Coverage 88.23% 88.23%
=======================================
Files 652 652
Lines 183855 183921 +66
Branches 35856 35862 +6
=======================================
+ Hits 162227 162287 +60
- Misses 14909 14914 +5
- Partials 6719 6720 +1
|
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.
The changes LGTM to me but I'd rather not make a bunch of unrelated changes in this PR.
IMO they are semi-related, because I moved |
Please do. |
4badc52
to
31ed46d
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 thanks
Co-Authored-By: Jayden Seric <me@jaydenseric.com> Co-Authored-By: Colin Ihrig <cjihrig@gmail.com>
31ed46d
to
462fb41
Compare
@atlowChemi I force-pushed to include the co-authors, so you'll need to re-approve before starting a CI. (Sorry!) |
|
Landed in 4f88179 |
Co-Authored-By: Jayden Seric <me@jaydenseric.com> Co-Authored-By: Colin Ihrig <cjihrig@gmail.com> PR-URL: #55037 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Co-Authored-By: Jayden Seric <me@jaydenseric.com> Co-Authored-By: Colin Ihrig <cjihrig@gmail.com> PR-URL: nodejs#55037 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Fixes #54756
ERR_SOURCE_MAP_MISSING_SOURCE
is now thrown when a sourcemap contains a reference to a non-existent file.@jaydenseric provided the test fixture, and @cjihrig provided the initial patch.