From 08d86d92902fedc294a131d45dedf4fbc3d84ad6 Mon Sep 17 00:00:00 2001 From: myrmidex Date: Mon, 17 Aug 2026 20:45:45 +0200 Subject: [PATCH] 50 - Fix tests failing on missing Vite manifest --- tests/TestCase.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index fe1ffc2..19a9d2a 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -6,5 +6,11 @@ abstract class TestCase extends BaseTestCase { - // + protected function setUp(): void + { + parent::setUp(); + + // Skip Vite asset resolution in tests: no build manifest exists. + $this->withoutVite(); + } }