Skip to content
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 behavior of --silent flag #3003

Merged
merged 1 commit into from
Feb 27, 2017
Merged

Fix behavior of --silent flag #3003

merged 1 commit into from
Feb 27, 2017

Conversation

wyze
Copy link
Contributor

@wyze wyze commented Feb 25, 2017

Summary

This fixes #2987. The issue was if verbose option wasn't specifically set to false, then it would be set to true, so when jest was determining which Console class to use, it would always go into the truth part of the first ternary.

  const TestConsole =
    config.verbose
      ? Console
      : (config.silent
        ? NullConsole
        : BufferedConsole
      );

This fix makes sure we didn't explicitly set silent: true before changing the value of verbose.

Test plan

All tests pass and verbose is no longer set to true when silent is passed.

@cpojer cpojer merged commit bbb1d56 into jestjs:master Feb 27, 2017
@cpojer
Copy link
Member

cpojer commented Feb 27, 2017

Thanks @wyze! Thanks for helping out on Jest.

@wyze wyze deleted the fix-issue-2987 branch February 27, 2017 03:02
skovhus pushed a commit to skovhus/jest that referenced this pull request Apr 29, 2017
tushardhole pushed a commit to tushardhole/jest that referenced this pull request Aug 21, 2017
@github-actions
Copy link

This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 13, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

With --silent, Jest still prints messages through the console
3 participants