mirror of
https://github.com/werkraum-media/watchlist.git
synced 2024-11-24 03:36:09 +01:00
Make tests compatible with TYPO3 core changes (#11)
The cHash now is enforced, which will break within functional tests. We adapt the configuration to still execute tests.
This commit is contained in:
parent
5a5db62d7c
commit
52226fa3a2
1 changed files with 10 additions and 0 deletions
|
@ -44,6 +44,16 @@ class BasicsTest extends FunctionalTestCase
|
||||||
'typo3conf/ext/watchlist/Tests/Fixtures/Fileadmin/Files' => 'fileadmin/Files',
|
'typo3conf/ext/watchlist/Tests/Fixtures/Fileadmin/Files' => 'fileadmin/Files',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
protected $configurationToUseInTestInstance = [
|
||||||
|
'FE' => [
|
||||||
|
'cacheHash' => [
|
||||||
|
'excludedParameters' => [
|
||||||
|
'^tx_watchlist_watchlist[',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
protected function setUp(): void
|
protected function setUp(): void
|
||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
Loading…
Reference in a new issue