Bastien

Results 61 comments of Bastien

Hi ! Yes of course it's a good idea :) If you are familiar with the French language (or not), a youtuber made a video in which he dockerized a...

Yes it is possible that his way of doing things is not the best, very often in his videos he discovers at the same time and learns to do it...

> Can you also try to run phpunit with "group" option? ( https://phpunit.readthedocs.io/en/9.5/annotations.html#group ) So assign some group to some test(s) and then run: `vendor/bin/phpunit --group=that_assigned_group_name` Yes it's working. I...

Yes I know the tests should be able to run in any order. Except that I use DamaDoctrineTestBundle which allows me to rollback database transactions after each test, and it...

Yes it's a good idea. Afterwards, it's a shame because it won't be done in a single command. And above all, it will no longer be possible to launch them...

Seems that this is not a problem relative to the `--testsuite` option. In my phpunit.xml.dist, when configuring my testsuite, I have way more directories than what I showed above. When...

Hello, have you found a solution? I also use **DAMA/doctrine-test-bundle** to rollback database transactions between each test, but like you say if using Panther it doesn't work. Were you able...

Is the crawler updated when we move from one frame to another? I tried what you said above, but I feel like I failed to switch to the frame, because...

Same here with : ```php $client = static::createPantherClient(); /** @var User $user */ $user = $this->getSuperAdminAccount(); $session = self::$container->get('session'); $token = new UsernamePasswordToken($user, null, 'main', $user->getRoles()); $session->set('_security_main', serialize($token)); $session->save(); $cookie...

I take this opportunity to provide the solution I found at the time (sorry I had completely forgotten this issue). I just modified a bootstrap 5 variable like this to...