The module has defined a config setting called tabs: true. However, there is no associated schema present for the same.
Due to the above reason, any PHPUnit test that is trying to enable the module is failing with the error Drupal\Core\Config\Schema\SchemaIncompleteException: No schema for module_filter.settings
The above error is coming because of https://www.drupal.org/node/2391795
As a workaround, I had to add this property in my test class but it's not the recommended way.
protected $strictConfigSchema = FALSE;
Hence it's best that we fix the problem at the core.
Comments
Comment #2
kunalkursija commentedThis patch should fix the issue.
Comment #3
dinesh18 commentedPatch #2 looks good to me. +1 to RTBC.
Let's wait for some more drupalers to review
Comment #4
andrey.troeglazov commentedComment #5
aardwolf commentedI've checked patch.
It works.
Comment #7
andrey.troeglazov commentedComment #8
andrey.troeglazov commented