From c105616fdca56fad4678c1ceb41faefe9bd8ea8a Mon Sep 17 00:00:00 2001 From: Katie McLaughlin Date: Wed, 25 Oct 2023 11:34:40 +1100 Subject: [PATCH] fix: rename folder, correct phpunit --- run/laravel/phpunit.xml | 5 +++-- run/laravel/{test => tests}/CreatesApplication.php | 0 run/laravel/{test => tests}/Feature/LandingPageTest.php | 0 run/laravel/{test => tests}/Feature/ProductTest.php | 0 run/laravel/{test => tests}/TestCase.php | 0 5 files changed, 3 insertions(+), 2 deletions(-) rename run/laravel/{test => tests}/CreatesApplication.php (100%) rename run/laravel/{test => tests}/Feature/LandingPageTest.php (100%) rename run/laravel/{test => tests}/Feature/ProductTest.php (100%) rename run/laravel/{test => tests}/TestCase.php (100%) diff --git a/run/laravel/phpunit.xml b/run/laravel/phpunit.xml index 97e26dfe72..fe977132e1 100644 --- a/run/laravel/phpunit.xml +++ b/run/laravel/phpunit.xml @@ -5,8 +5,8 @@ colors="true" > - - test + + tests/Feature @@ -14,6 +14,7 @@ ./app + diff --git a/run/laravel/test/CreatesApplication.php b/run/laravel/tests/CreatesApplication.php similarity index 100% rename from run/laravel/test/CreatesApplication.php rename to run/laravel/tests/CreatesApplication.php diff --git a/run/laravel/test/Feature/LandingPageTest.php b/run/laravel/tests/Feature/LandingPageTest.php similarity index 100% rename from run/laravel/test/Feature/LandingPageTest.php rename to run/laravel/tests/Feature/LandingPageTest.php diff --git a/run/laravel/test/Feature/ProductTest.php b/run/laravel/tests/Feature/ProductTest.php similarity index 100% rename from run/laravel/test/Feature/ProductTest.php rename to run/laravel/tests/Feature/ProductTest.php diff --git a/run/laravel/test/TestCase.php b/run/laravel/tests/TestCase.php similarity index 100% rename from run/laravel/test/TestCase.php rename to run/laravel/tests/TestCase.php