#development #laravel #php #testing

In Laravel, you can easily determine if the application is running tests or not.

Sometimes, you don't want to run some pieces of code during your unit tests.

1if (!app()->runningUnitTests()) {
2    $this->uploadToStorage();
3}

Tip found here.