Skip to content

Commit 4f7ad98

Browse files
committed
[TASK] disable fluid template cache for tests
1 parent 17c66a0 commit 4f7ad98

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Tests/Functional/Frontend/AbstractFrontend.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,25 @@
1111
*/
1212

1313
use Psr\Http\Message\ResponseInterface;
14+
use TYPO3\CMS\Core\Cache\Backend\NullBackend;
1415
use TYPO3\TestingFramework\Core\Functional\Framework\Frontend\InternalRequest;
1516
use TYPO3\TestingFramework\Core\Functional\Framework\Frontend\InternalRequestContext;
1617
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
1718

1819
abstract class AbstractFrontend extends FunctionalTestCase
1920
{
21+
protected array $configurationToUseInTestInstance = [
22+
'SYS' => [
23+
'caching' => [
24+
'cacheConfigurations' => [
25+
'fluid_template' => [
26+
'backend' => NullBackend::class,
27+
],
28+
],
29+
],
30+
],
31+
];
32+
2033
/**
2134
* @var non-empty-string[]
2235
*/

0 commit comments

Comments
 (0)