Skip to content

Instantly share code, notes, and snippets.

View mahmutbayri's full-sized avatar

Mahmut Bayri mahmutbayri

  • Eindhoven, North Brabant, Netherlands
View GitHub Profile
@adamtomat
adamtomat / TestCase.php
Last active April 2, 2023 12:44
Laravel 5.4 - Disable Exception Handling for tests, with reminder to enable it when green
<?php
namespace Tests;
use App\Exceptions\Handler;
use Exception;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase