pinojs / pino-pretty

🌲Basic prettifier for Pino log lines
MIT License
1.25k stars 147 forks source link

Jest watch mode menu disappear #301

Closed mikicho closed 2 years ago

mikicho commented 2 years ago

Not sure if it's a pino-pretty bug, but when using jest watch mode, the interactive menu disappears. all the keys are working but I can't see them on the screen. Correct behaviour: image

But when I'm running with pino-pretty, I see jest's logs, but not the interactive menu as above. This is how I run jest with pino-pretty:

jest --runInBand --watch  --colors | pino-pretty --singleLine
mcollina commented 2 years ago

That's how unix and jest work, you'll need to use pino-pretty from within your code to avoid this.

mikicho commented 2 years ago

thanks