From ab14f5e452f244903125fdf28c1988df0c59de2d Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 12 Aug 2026 23:25:57 +0200 Subject: [PATCH] Disable Vite in tests so CI can run without a frontend build. Feature tests were failing on the host runner with ViteManifestNotFoundException after the flaky Node build step was removed. --- tests/TestCase.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index fe1ffc2..1b21e0e 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -6,5 +6,11 @@ use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { - // + protected function setUp(): void + { + parent::setUp(); + + // Feature tests render Blade without a Vite build in CI. + $this->withoutVite(); + } }