Parallel Laravel Dusk Tests

If you’ve ever used Dusk, you know the following: It can sometimes be flaky for no reason Even a relatively small test suite takes time, because it uses a real driver in the background The above was a real thing that happened and mainly because of work, I decided to give it a good poke and so the laravel dusk parallel package was born Essentially, all you have to do it require the package, and run a few extra chromedriver instances (sorry, I haven’t tested any other drivers!) ...

March 4, 2026

Queue Facade assertPushedTimes - Laravel v12.49.0

I’m fairly sure by this point Taylor Otwell is more than likely fed up with seeing my face, but it was him that said “we must ship!” I’m continuing to commit and push PR’s so– this week covers Laravel v12.49.0 - and as usual there’s some funky additions! This blog post is mainly to go over my additions, as well - I’m not Laravel News! Queue assertPushedTimes Currently, when you want to assert a Job that’s been pushed to the queue a certain amount of times, we do something like: ...

January 28, 2026