cypress: Process Profiler Doesn't Work With cypress run
Current behavior:
Enabling the new process profiler doesn’t work with cypress run
. The profiler is not shown. It works fine with cypress open
Desired behavior:
There should be a way to use the process profiler (or at least access its data) while using cypress run
Test code to reproduce
N/A
Versions
4.8.0
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Reactions: 2
- Comments: 18 (8 by maintainers)
I am running Cypress v7.7 on a Ubuntu 20.04 system and running the following command
No logs are printed.
Here’s an image showing that DEBUG env variable is set in the terminal.
I resolved this issue by running the below command.
export DEBUG=cypress*
rather thanDEBUG=cypress*
@jennifer-shehane Still same with 9.4.
DEBUG=cypress:server:util:process_profiler
does not work.DEBUG=cypress:server:*
does not work. ButDEBUG=cypress:*
does print everything, includingcypress:server:...
lines.