From d8805a791ec731bbb398323837e2f46736c1462a Mon Sep 17 00:00:00 2001 From: James Collins Date: Mon, 30 Jan 2023 20:20:22 +1000 Subject: [PATCH] fake vite --- tests/TestCase.php | 8 ++++++++ 1 file changed, 8 insertions(+) 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(); + } }