diff --git a/tests/Feature/ProgressTest.php b/tests/Feature/ProgressTest.php index 2970c62..ec1deb6 100644 --- a/tests/Feature/ProgressTest.php +++ b/tests/Feature/ProgressTest.php @@ -43,7 +43,7 @@ 'array' => [['Alabama', 'Alaska', 'Arizona', 'Arkansas']], 'collection' => [collect(['Alabama', 'Alaska', 'Arizona', 'Arkansas'])], 'integer' => [4], -]); +])->skip(!depends_on_collection()); it('renders a progress bar without a label', function () { Prompt::fake(); diff --git a/tests/Pest.php b/tests/Pest.php index d6f7d36..32b3678 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -42,5 +42,4 @@ function depends_on_collection(): bool { return Composer\InstalledVersions::isInstalled('illuminate/collections', false); - // .. }