dmaicher / doctrine-test-bundle

Symfony bundle to isolate your app's doctrine database tests and improve the test performance
MIT License
1.08k stars 60 forks source link

Does this work with Symfony Panther? #218

Closed arderyp closed 2 years ago

arderyp commented 2 years ago

https://github.com/symfony/panther

My guess is no, because panther spins up it's owl webdriven client that executes action that doctrine-test-bundle probably doesn't have access to see and roll back. If there was any way to achieve this, however, that would be amazing.

dmaicher commented 2 years ago

Indeed this does not work. We need a single php process to roll-back the DB changes.

arderyp commented 2 years ago

That's what a thought, thanks for the quick response! The webdriven client's are both a blessing and a curse.