diff --git a/tests/TestCase.php b/tests/TestCase.php index 2932d4a..dead5f1 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -7,4 +7,12 @@ use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { use CreatesApplication; + + + protected function setUp(): void + { + parent::setUp(); + + $this->withoutVite(); + } }