We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17c66a0 commit 4f7ad98Copy full SHA for 4f7ad98
Tests/Functional/Frontend/AbstractFrontend.php
@@ -11,12 +11,25 @@
11
*/
12
13
use Psr\Http\Message\ResponseInterface;
14
+use TYPO3\CMS\Core\Cache\Backend\NullBackend;
15
use TYPO3\TestingFramework\Core\Functional\Framework\Frontend\InternalRequest;
16
use TYPO3\TestingFramework\Core\Functional\Framework\Frontend\InternalRequestContext;
17
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
18
19
abstract class AbstractFrontend extends FunctionalTestCase
20
{
21
+ protected array $configurationToUseInTestInstance = [
22
+ 'SYS' => [
23
+ 'caching' => [
24
+ 'cacheConfigurations' => [
25
+ 'fluid_template' => [
26
+ 'backend' => NullBackend::class,
27
+ ],
28
29
30
31
+ ];
32
+
33
/**
34
* @var non-empty-string[]
35
0 commit comments