We have some console.error statements in code (for example in api).
When we run tests for non-success cases you can see errors in report. It's confusing.
We need to find a way how to avoid it. For now I see 3 options:
- remove console.error from code
- mock console in tests
- use error sender wrapper in code (it will be console.error in prod/dev for now and noop-func in tests)