diff --git a/tests/TestCase.php b/tests/TestCase.php index 90243996..0f360547 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -37,6 +37,13 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase } } + protected function tearDown(): void + { + config(['database.default' => 'central']); + + parent::tearDown(); + } + public function createTenant($domain = 'localhost') { tenant()->create($domain);