Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/Feature/Commands/RemoveCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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';
Expand Down