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