From d6d8d011fa806a91a2d3ef119da58a15d67b94f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yunus=20Emre=20Delig=C3=B6z?= Date: Sun, 7 Apr 2024 22:38:34 +0300 Subject: [PATCH] chore(tests): remove CreatesApplication trait The CreatesApplication trait, used in Laravel testing, was deleted, indicating a change in how our tests bootstrap the application. This change may be part of larger modifications, possibly in the direction of streamlining test setup or conforming to changes in the Laravel testing environment. --- tests/CreatesApplication.php | 23 ----------------------- tests/TestCase.php | 2 +- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 tests/CreatesApplication.php diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php deleted file mode 100644 index 5c524a0..0000000 --- a/tests/CreatesApplication.php +++ /dev/null @@ -1,23 +0,0 @@ -make(Kernel::class)->bootstrap(); - - return $app; - } -} diff --git a/tests/TestCase.php b/tests/TestCase.php index 5341116..6ac0072 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -8,5 +8,5 @@ abstract class TestCase extends BaseTestCase { - use CreatesApplication; + // }