From a3c9a07d6f1f9886fde7204a2bf974f4485b9aad Mon Sep 17 00:00:00 2001 From: markhuot Date: Mon, 30 Sep 2024 16:36:51 -0400 Subject: [PATCH] removing hardcoded tty --- src/console/PestController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/console/PestController.php b/src/console/PestController.php index a8f1ccc..eea63a0 100644 --- a/src/console/PestController.php +++ b/src/console/PestController.php @@ -100,7 +100,6 @@ protected function runTests() } $process = new Process(['./vendor/bin/pest', ...$pestOptions]); - $process->setTty(true); $process->setTimeout(null); $process->start();