diff --git a/tests/TestCase.php b/tests/TestCase.php index fe1ffc2ff..eece6d4c3 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -6,5 +6,9 @@ use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { - // + protected function setUp(): void + { + parent::setUp(); + $this->withoutVite(); + } }