testing-framework icon indicating copy to clipboard operation
testing-framework copied to clipboard

TYPO3 testing framework for core and extensions

Results 23 testing-framework issues
Sort by recently updated
recently updated
newest added

### What are you trying to achieve? In my functional test I want to load an extension with `typo3fluid/fluid` dependency via `$testExtensionsToLoad`. ### What do you get instead? Loading the...

### What are you trying to achieve? The feature `redirects.hitCount` should not be enabled by default in acceptance test instances, in order to avoid unexpected default that derive from a...

Default requests won't have a workspace id. That will lead to TYPO3 defaults -99 id. That in turn will lead to being in preview mode once a backend user is...

The internal array always uses the extension key. Not having an ext_emconf.php with dependencies to extension keys, but only a composer.json with dependencies to package names will always result in:...

### Does your feature request relate to a problem? We removed all our `ext_emconf.php` files when updating from TYPO3 10 LTS to 12 LTS. This leads to issues like: ```...

### What are you trying to achieve? I have the following setup: * two functional test cases * each has its own test extension in a subfolder `Fixtures/test_extension` with a...

### What are you trying to achieve? A frontend request with enabled backend user. As we extend admin panel and want to cover that with functional tests executing frontend requests....

The Core (`main` and `12.4`) already is on 10.5.

Even if page tree nodes are queried from a given context node, the currently used XPath query searches for **all elements in the document instead**. That's because of the `//`...

See https://laravel.com/docs/10.x/mail#testing-mailable-sending for inspiration source and https://github.com/laravel/framework/blob/10.x/src/Illuminate/Support/Testing/Fakes/MailFake.php for the original source code. How to use: ```php $mailer = GeneralUtility::makeInstance(FakeMailer::class); GeneralUtility::setSingletonInstance(Mailer::class, $mailer); // run code which should send an email (dispatch...