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