From 4de52cc914fab5fc688cb142e1f314240ab2dcba Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Wed, 4 Sep 2024 11:27:40 +1000 Subject: [PATCH] Use Pest as default testing framework --- src/Console/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index 41c4cb6dc..659eea8c4 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -865,7 +865,7 @@ protected function afterPromptingForMissingArguments(InputInterface $input, Outp $input->setOption('pest', select( label: 'Which testing framework do you prefer?', options: ['Pest', 'PHPUnit'], - default: $this->isUsingPest() ? 'Pest' : 'PHPUnit', + default: 'Pest', ) === 'Pest'); }