✍️ New blog post: Single-use Tests

Not all automated tests should be committed. My test served its purpose and will forever be in my heart, but not in my repository.

tl;dr; How I used `php artisan route:list` to write a single-use test for a refactor.

https://timacdonald.me/single-use-tests/

Single-use Tests by Tim MacDonald

Tests I write are usually written in Pest or Jest. I also usually commit them to a code repository - but not all automated tests should be committed. I wrote, what I consider to be an automated test, that was a single-use test. It served it's purpose and it'll forever be in my heart, but not in my repository.

Tim MacDonald