You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Codeception's console output (see Codeception/Codeception#5977 (comment) for some examples) is misleading in that it suggests that there's an actual HTTP request being made, while in fact it's just a Symfony BrowserKit Request object that is passed to the framework's (front-)controller.
The actual content of this Request object isn't shown anywhere. I used var_dump() in my controller (!) for debugging.
So I'm suggesting to dump the Request object into the console if Codeception is called with the --debug or -vvv flag.
The text was updated successfully, but these errors were encountered:
Codeception's console output (see Codeception/Codeception#5977 (comment) for some examples) is misleading in that it suggests that there's an actual HTTP request being made, while in fact it's just a Symfony BrowserKit Request object that is passed to the framework's (front-)controller.
The actual content of this Request object isn't shown anywhere. I used
var_dump()
in my controller (!) for debugging.So I'm suggesting to dump the Request object into the console if Codeception is called with the
--debug
or-vvv
flag.The text was updated successfully, but these errors were encountered: