We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Debug flags like DEBUG=cypress:* or NODE_DEBUG=request don't work because we're ignoring stderr from the Cypress child process.
DEBUG=cypress:*
NODE_DEBUG=request
stderr
We need to listen to stderr but just ignore the xvfb child process (which is super noisy).
xvfb
We could even conditionally do that by seeing if cypress:xvfb is enabled, and if so to log those events as well.
cypress:xvfb
The text was updated successfully, but these errors were encountered:
Also need to fix electron on Windows not outputting any colors.
Sorry, something went wrong.
cli: fixes #921 don't ignore stderr, inherit stdio on everything exce…
da7612a
…pt when linux + xvfb - filter out stderr messages coming from Xlib or libudev (from xvfb)
d54156e
Released in 1.4.1.
1.4.1
brian-mann
No branches or pull requests
Debug flags like
DEBUG=cypress:*
orNODE_DEBUG=request
don't work because we're ignoringstderr
from the Cypress child process.We need to listen to
stderr
but just ignore thexvfb
child process (which is super noisy).We could even conditionally do that by seeing if
cypress:xvfb
is enabled, and if so to log those events as well.The text was updated successfully, but these errors were encountered: