From 71e1c170bb293b89824ff0897d098edad25bfd2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 15 Aug 2019 23:57:54 +0200 Subject: [PATCH] wip --- tests/TestCase.php | 7 +++++++ 1 file changed, 7 insertions(+) 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);