-
Notifications
You must be signed in to change notification settings - Fork 30.3k
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: remove unused errors #56607
base: main
Are you sure you want to change the base?
test_runner: remove unused errors #56607
Conversation
@cc @nodejs/test_runner |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #56607 +/- ##
==========================================
+ Coverage 89.12% 89.20% +0.07%
==========================================
Files 662 662
Lines 191555 191801 +246
Branches 36859 36920 +61
==========================================
+ Hits 170722 171092 +370
+ Misses 13694 13563 -131
- Partials 7139 7146 +7
|
@@ -2821,25 +2821,6 @@ An unspecified or non-specific system error has occurred within the Node.js | |||
process. The error object will have an `err.info` object property with | |||
additional details. | |||
|
|||
<a id="ERR_TAP_LEXER_ERROR"></a> |
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.
There is a section on this page for legacy errors that are no longer used. I think these should be moved there?
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.
Moved them under the correct section!
d207e7e
to
a817ea6
Compare
It seems that
ERR_TAP_PARSER_ERROR
,ERR_TAP_LEXER_ERROR
andERR_TAP_VALIDATION_ERROR
are no longer used in the codebase.Does it make sense to perform some housekeeping by removing them?