mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:16:13 +01:00
[BUGFIX] Load realistic, full TypoScript in the controller tests (#1224)
To be closer to a real-world scenario, we also should load the constants of fluid_styled_content and the constants and setup of our own extension.
This commit is contained in:
parent
188ca41922
commit
a014ea7efb
1 changed files with 5 additions and 0 deletions
|
@ -26,8 +26,13 @@ final class TeaControllerTest extends FunctionalTestCase
|
||||||
|
|
||||||
$this->importCSVDataSet(__DIR__ . '/Fixtures/Database/SiteStructure.csv');
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/Database/SiteStructure.csv');
|
||||||
$this->setUpFrontendRootPage(1, [
|
$this->setUpFrontendRootPage(1, [
|
||||||
|
'constants' => [
|
||||||
|
'EXT:fluid_styled_content/Configuration/TypoScript/constants.typoscript',
|
||||||
|
'EXT:tea/Configuration/TypoScript/constants.typoscript',
|
||||||
|
],
|
||||||
'setup' => [
|
'setup' => [
|
||||||
'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript',
|
'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript',
|
||||||
|
'EXT:tea/Configuration/TypoScript/setup.typoscript',
|
||||||
'EXT:tea/Tests/Functional/Controller/Fixtures/TypoScript/Setup/Rendering.typoscript',
|
'EXT:tea/Tests/Functional/Controller/Fixtures/TypoScript/Setup/Rendering.typoscript',
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue