We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8d760 commit bf94fb7Copy full SHA for bf94fb7
src/Screens/Phpunit.php
@@ -90,7 +90,7 @@ protected function writeHeader()
90
91
protected function runTests()
92
{
93
- $result = (new Process(["{$this->phpunitBinaryPath} {$this->phpunitArguments}"]))
+ $result = (new Process(array_merge([$this->phpunitBinaryPath], explode(' ', $this->phpunitArguments))))
94
->setTty(true)
95
->run(function ($type, $line) {
96
echo $line;
0 commit comments