From a6e133a19421db05342416f673db669102915cc3 Mon Sep 17 00:00:00 2001 From: Fabio Ivona Date: Mon, 20 Feb 2023 23:56:26 +0100 Subject: [PATCH] add --ansi option to artisan command call --- src/Plugins/Init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/Init.php b/src/Plugins/Init.php index d63e88e8..ac1c8ba2 100644 --- a/src/Plugins/Init.php +++ b/src/Plugins/Init.php @@ -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']))