diff --git a/Tests/Functional/Domain/Repository/CacheTableRepositoryTest.php b/Tests/Functional/Domain/Repository/CacheTableRepositoryTest.php index 6821ab2..7b17e1c 100644 --- a/Tests/Functional/Domain/Repository/CacheTableRepositoryTest.php +++ b/Tests/Functional/Domain/Repository/CacheTableRepositoryTest.php @@ -34,6 +34,20 @@ class CacheTableRepositoryTest extends FunctionalTestCase { + + protected array $configurationToUseInTestInstance = [ + 'SYS' => [ + 'caching' => [ + 'cacheConfigurations' => [ + // Set pages cache database backend, testing-framework sets this to NullBackend by default. + 'pages' => [ + 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend', + ], + ], + ], + ], + ]; + protected array $testExtensionsToLoad = ['typo3conf/ext/cachemgm']; /**