Here I share my thoughts, ideas, and experiences.
I write about PHP & Laravel and other web development topics in general.
Back in the 4.2 Laravel days, you were able to inspect views with tests more thoroughly with the help of a symphony dom crawler. Unfortunately, this feature was removed in later versions. That's a...
Some time ago, I needed to write a test for Laravel job and I've spent hours searching for solution. Testing Laravel jobs that are queued is straightforward. But how do you test jobs that are...
I've been working on a project where the requirement was to send emails via Amazon SES and track deliverability status with webhooks
. Not surprisingly, at least for me, the ride wasn't a...
When testing 3rd party API call (dealing with external resources), one of the problems is that those tests are slow. One of the solutions is to use fake classes. On the outside, the fake class...