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

console.error pollution logs removed in tests #194

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

davolokh
Copy link

console.error mocked in tests (only locally where it's needed) to keep logs clear

Motivation and Context

In current state when tests run there are several console.error prints which are signs of normal behaviour, but add additional noise and require careful checks ("green -- good" approach is not applicable). Mocking console.error allows to keep logs clear (and if logs are clear ANY new information is visible, can't be lost in other logs and chances that it would be treated properly are higher.
There is possibility to mock console.error globally (in jest.config.js), but IMO it could be potentially harmful (hides all error by default).

How Has This Been Tested?

Tests themselves are fixed.

Breaking Changes

No

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update

Checklist

  • I have read the MCP Documentation
  • My code follows the repository's style guidelines
  • New and existing tests pass locally
  • I have added appropriate error handling
  • I have added or updated documentation as needed

Additional context

before:
Screenshot 2025-03-14 at 20 02 17

after:
Screenshot 2025-03-14 at 20 00 32

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant