From d7ced0c43d8ffb5334ce6ad7ae7416a45b1a01f2 Mon Sep 17 00:00:00 2001 From: Saufi Date: Wed, 13 May 2026 12:17:51 +0800 Subject: [PATCH] test runner 4 --- tests/Pest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'); /* |--------------------------------------------------------------------------