From 55d90d9137f051f42bf52ddc49c4f51382a39e09 Mon Sep 17 00:00:00 2001 From: YoussefACHCHIRAJ Date: Wed, 15 Oct 2025 21:39:14 +0100 Subject: [PATCH] style: update test descriptions for component removal scenarios --- tests/Feature/Commands/RemoveCommandTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/Commands/RemoveCommandTest.php b/tests/Feature/Commands/RemoveCommandTest.php index 2612ce5..55bd934 100644 --- a/tests/Feature/Commands/RemoveCommandTest.php +++ b/tests/Feature/Commands/RemoveCommandTest.php @@ -47,7 +47,7 @@ }); -it("removes an installed component with dependencies after confirmation of removing dependencies", function () { +it("Removes an installed component along with its dependencies when removal is confirmed.", function () { $component = 'autocomplete'; $dependency = 'icon'; @@ -85,7 +85,7 @@ expect($sheafLock)->not->toContain("$dependency"); }); -it("removes an installed component without dependencies after not confirming to remove dependencies", function () { +it("Removes an installed component but keeps its unused dependencies when removal is not confirmed.", function () { $component = 'autocomplete'; $dependency = 'icon';