-
Notifications
You must be signed in to change notification settings - Fork 905
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
fix: avoid catching init
errors and avoid printing their stack
#1742
Merged
thymikee
merged 4 commits into
react-native-community:main
from
kraenhansen:defer-init-errors
Nov 7, 2022
Merged
fix: avoid catching init
errors and avoid printing their stack
#1742
thymikee
merged 4 commits into
react-native-community:main
from
kraenhansen:defer-init-errors
Nov 7, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
init
errors and avoid printing their stackinit
errors and avoid printing their stack
I fixed the failing e2e test. |
kraenhansen
commented
Nov 6, 2022
@@ -204,6 +204,8 @@ ${chalk.bold('args:')} ${(args || []).join(' ')} | |||
${chalk.bold('stderr:')} ${result.stderr} | |||
${chalk.bold('stdout:')} ${result.stdout} | |||
${chalk.bold('code:')} ${result.code}`); | |||
} else if (options.expectedFailure && result.code === 0) { | |||
throw new Error("Expected command to fail, but it didn't"); |
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.
This could have caught this (or a similar issue) earlier.
thymikee
approved these changes
Nov 7, 2022
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.
Makes sense, thanks!
thymikee
pushed a commit
that referenced
this pull request
Nov 8, 2022
* Defer from "init" to index.ts to handle errors * Extend a CLIError to avoid printing stack * Fixing tests by relaxing the stderr match * Assert non-zero exit code if failure is expected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
I experienced the following issue: #1741 and decided to fix it too.
I've made four changes:
handleError
insrc/index.ts
.CLIError
to avoid printing the stack, since "we know exactly what went wrong" and expects the user to have the means to fix it.\n
in the stderr)jest/helpers.ts
'shandleTestFailure
to assert a non-zero exit code if expectedFailure is true. This could have caught this (or a similar issue) earlier.Test Plan:
I suggest following the instructions for reproducing this on the original issue, only this time, notice how the command exits with status code 1 as expected and it still doesn't print the error stack.