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
When running PHPUnit tests the CKFinder connector routes are not defined. This will result in a route not defined error when returning views with @include('ckfinder::setup')
This is a result of the CKFinderServiceProvider. The service provider checks if we are runningInConsole, registers some commands and returns. Leaving us with no routes.
Does anyone have a suggestion on how to solve this?
Maybe extend the if-check with $this->app->runningInConsole() && !$this->app->runningUnitTests() ?
The text was updated successfully, but these errors were encountered:
When running PHPUnit tests the CKFinder connector routes are not defined. This will result in a
route not defined
error when returning views with@include('ckfinder::setup')
This is a result of the CKFinderServiceProvider. The service provider checks if we are
runningInConsole
, registers some commands and returns. Leaving us with no routes.Does anyone have a suggestion on how to solve this?
Maybe extend the if-check with
$this->app->runningInConsole() && !$this->app->runningUnitTests()
?The text was updated successfully, but these errors were encountered: