From d778cfbebbeef1d75feb3aac7368d338436f914a Mon Sep 17 00:00:00 2001 From: myrmidex Date: Sun, 16 Aug 2026 10:50:28 +0200 Subject: [PATCH] 46 - Disable Vite manifest resolution in tests --- tests/TestCase.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index fe1ffc2..ff29038 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -6,5 +6,12 @@ abstract class TestCase extends BaseTestCase { - // + protected function setUp(): void + { + parent::setUp(); + + // CI runs the asset build in a separate job, so there is no Vite + // manifest here; without this any test that renders the layout fails. + $this->withoutVite(); + } }