Disable Vite in tests so CI can run without a frontend build.
CI / test (push) Successful in 27s
CI / build-and-push (push) Successful in 1m34s
CI / deploy (push) Failing after 14s

Feature tests were failing on the host runner with ViteManifestNotFoundException after the flaky Node build step was removed.
This commit is contained in:
ben
2026-08-12 23:25:57 +02:00
parent 761f1a1f78
commit ab14f5e452
+7 -1
View File
@@ -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();
}
}