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:
Daniel Siepmann 2023-07-24 14:36:57 +02:00 committed by GitHub
parent 5a5db62d7c
commit 52226fa3a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,6 +44,16 @@ class BasicsTest extends FunctionalTestCase
'typo3conf/ext/watchlist/Tests/Fixtures/Fileadmin/Files' => 'fileadmin/Files',
];
protected $configurationToUseInTestInstance = [
'FE' => [
'cacheHash' => [
'excludedParameters' => [
'^tx_watchlist_watchlist[',
],
],
],
];
protected function setUp(): void
{
parent::setUp();