From d44fa661a126c7e49de40d4e205535e476bec172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Tue, 28 Nov 2023 14:29:24 +0000 Subject: [PATCH] fix: tests --- tests/TestCase.php | 7 +++++++ 1 file changed, 7 insertions(+) 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(); + } }