Skip to content

Commit

Permalink
fix: CD-305988 Added missing cache backend configuration for function…
Browse files Browse the repository at this point in the history
…al tests
  • Loading branch information
sourcesoldier committed Mar 7, 2024
1 parent 257141c commit d120b48
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Tests/Functional/Domain/Repository/CacheTableRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'];

/**
Expand Down

0 comments on commit d120b48

Please sign in to comment.