diff --git a/tests/Feature/TestCase.php b/tests/Feature/TestCase.php index 2a1b83c..010dfde 100644 --- a/tests/Feature/TestCase.php +++ b/tests/Feature/TestCase.php @@ -10,6 +10,9 @@ use Orchestra\Testbench\Concerns\WithWorkbench; use Orchestra\Testbench\TestCase as OrchestraTestCase; +use function restore_error_handler; +use function restore_exception_handler; + abstract class TestCase extends OrchestraTestCase { use WithWorkbench; @@ -33,6 +36,7 @@ public function tearDown(): void restore_exception_handler(); m::close(); + parent::tearDown(); } }