From 377ccc6d613f2dbd42ded7b9a61ff04324b3eba7 Mon Sep 17 00:00:00 2001 From: Josh Manders Date: Tue, 23 Jul 2024 23:37:10 -0500 Subject: [PATCH] disable vite --- tests/TestCase.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index fe1ffc2..388f6b5 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -6,5 +6,10 @@ abstract class TestCase extends BaseTestCase { - // + protected function setUp(): void + { + parent::setUp(); + + $this->withoutVite(); + } }