From 19cbea9273dffd42422cf7164700680d0bdb2b35 Mon Sep 17 00:00:00 2001 From: myrmidex Date: Sun, 8 Mar 2026 14:58:00 +0100 Subject: [PATCH] 25 - Disable Vite in tests to fix CI manifest errors --- tests/TestCase.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index c4bff2d..b22dca3 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -15,6 +15,9 @@ protected function setUp(): void { parent::setUp(); + // Prevent Vite manifest errors in tests (no npm build in CI) + $this->withoutVite(); + // Clean up any existing Mockery instances before each test if (class_exists(Mockery::class)) { Mockery::close();