diff --git a/tests/TestCase.php b/tests/TestCase.php index ce779876..38c9dac0 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -11,4 +11,11 @@ abstract class TestCase extends BaseTestCase { use CreatesApplication; use RefreshDatabase; + + protected function setUp(): void + { + parent::setUp(); + + $this->withoutVite(); + } }