add --ansi option to artisan command call

This commit is contained in:
Fabio Ivona
2023-02-20 23:56:26 +01:00
parent 46b785f29f
commit a6e133a194

View File

@ -127,7 +127,7 @@ final class Init implements HandlesArguments
$command = [
'php', 'artisan',
'pest:install',
'--no-interaction',
'--ansi', '--no-interaction',
];
return (new Process($command, $this->testSuite->rootPath, ['COMPOSER_MEMORY_LIMIT' => '-1']))