From c3ce5b0b80b9e8d3d9041db4d14d3709c141f910 Mon Sep 17 00:00:00 2001 From: myrmidex Date: Mon, 30 Mar 2026 00:20:40 +0200 Subject: [PATCH] 24 - Fix Vite manifest error in CI tests --- 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(); + } }