diff --git a/tests/TestCase.php b/tests/TestCase.php index fe1ffc2..19a9d2a 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -6,5 +6,11 @@ abstract class TestCase extends BaseTestCase { - // + protected function setUp(): void + { + parent::setUp(); + + // Skip Vite asset resolution in tests: no build manifest exists. + $this->withoutVite(); + } }