How to set character encoding for cypress runner? #22079
-
I'm getting this in logs of my proprietary CI on Windows:
And I expect this:
I've tried setting encoding to unicode using It helps to downlad log and run this: My collegue reported that he had the same issue on our CI with Python, and solved it like this: CHCP 65001
SET PYTHONIOENCODING=utf-8 He also sais:
I was considering using node_modules patching to replace box drawing characters, but it seems like it's part of the binary. Any idea on how I can force Cypress to produce Unicode output? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Turned out it's our CI system that treated input as ASCII and outputted it as UTF-8. |
Beta Was this translation helpful? Give feedback.
Turned out it's our CI system that treated input as ASCII and outputted it as UTF-8.