diff --git a/tests/Pest.php b/tests/Pest.php index f5c6f5a..4d66b10 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -18,7 +18,9 @@ pest()->extend(TestCase::class) ->use(RefreshDatabase::class) ->in('Feature'); -beforeEach(fn () => $this->withoutVite())->in('Feature'); +beforeEach(function () { + $this->withoutVite(); +})->in('Feature'); /* |--------------------------------------------------------------------------