module-symfony icon indicating copy to clipboard operation
module-symfony copied to clipboard

Codeception module for testing apps using Symfony framework

Results 7 module-symfony issues
Sort by recently updated
recently updated
newest added

symfony changed their security again. the code to do the automated login looks like that: https://symfony.com/doc/7.0/security.html#login-programmatically ```php // get the user to be authenticated $user = ...; // log the...

This module sets a instance of the entity manager in the container because this is hard coded as a persistent service. This results in all doctrine event listeners being instantiated...

I think the process of rebooting the kernel should be done right after the request has been finished. Here we have logic that will reboot the kernel only when a...

help wanted

Hello, When trying to test a part of our code with an Event Listener like: ```

bug
help wanted

Hello, I have a private library for handling translations, which works in a way where you have a translatable entity and a collection of translation entities for it, each for...

When using an [Entity Listener](https://symfony.com/doc/current/bundles/DoctrineBundle/entity-listeners.html) to send an email, `seeEmailIsSent()` doesn't notice it. When I do the same email command in the controller, it works. The actual email delivery works...

My use case: My app uses the Symfony HTTP Client, which throws a `TransportException` if it can't connect: https://symfony.com/doc/current/http_client.html#handling-exceptions And I want to assert that my app catches it correctly....