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
{{ message }}
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
YiiDebugToolbar makes my unit test fail when It is enabled in my main.conf file. I think that I have this problem when I unit test a feature and there's a call to a controller inside my test.
My fix was to add this at the beginning of init() in YiiDebugToolbarRoute.php:
if (false === $this->enabled) return;
Works well after that =]
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
YiiDebugToolbar makes my unit test fail when It is enabled in my main.conf file. I think that I have this problem when I unit test a feature and there's a call to a controller inside my test.
My fix was to add this at the beginning of init() in YiiDebugToolbarRoute.php:
Works well after that =]
The text was updated successfully, but these errors were encountered: