Codecept is used for unit testing in my application, and accidentally, it stopped working and gave the following error when running unit tests:
In ModuleContainer.php line 80:
Module Laravel could not be found and loaded
Module Laravel is used in unit.suite.yml under 'enabled' section as follows:
modules:
enabled:
- Asserts
- \Helper\Unit
- Db
- Laravel
- Cli
- \Helper\ElasticsearchHelper
Composer json
"require-dev": {
"codeception/codeception": "^2.4",
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
Is there any way to enable the Laravel module in Laravel. This application is developed using laravel Lumen.