From 3f34b5615a1e557712280a050015d94879fb1a1f Mon Sep 17 00:00:00 2001 From: Jasper Tey Date: Wed, 13 Nov 2024 02:08:30 -0500 Subject: [PATCH] Remove composer reset in test application --- tests/TestCase.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 39b3e58..6dc58c5 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -177,7 +177,6 @@ protected function setupTestApplication() File::copyDirectory(__DIR__.'/.skeleton/database', base_path('database')); File::copyDirectory(__DIR__.'/.skeleton/src/Domain', base_path('src/Domain')); File::copy(__DIR__.'/.skeleton/bootstrap/providers.php', base_path('bootstrap/providers.php')); - File::copy(__DIR__.'/.skeleton/composer.json', base_path('composer.json')); File::ensureDirectoryExists(app_path('Models')); $this->setDomainPathInComposer('Domain', 'src/Domain');