diff --git a/tests/TestCase.php b/tests/TestCase.php index c4d3ab8..eb726de 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -12,4 +12,10 @@ abstract class TestCase extends BaseTestCase * @var bool */ protected $seed = true; + + protected function setUp(): void + { + parent::setUp(); + $this->withoutVite(); + } }