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();