Fixes for tests

This commit is contained in:
David Bomba 2023-01-18 19:02:14 +11:00
parent bc402ec30c
commit f1dcedebe2

View File

@ -35,7 +35,7 @@ $tests = \Illuminate\Support\Str::of($process->getOutput())
* Run phpunit with a filter: * Run phpunit with a filter:
* phpunit --filter 'TestClass|AnotherTestClass|...' * phpunit --filter 'TestClass|AnotherTestClass|...'
*/ */
$process = new \Symfony\Component\Process\Process(['./vendor/bin/phpunit', '--testdox --filter', $tests->join('|')], timeout: null); $process = new \Symfony\Component\Process\Process(['./vendor/bin/phpunit', '--testdox', '--filter', $tests->join('|')], timeout: null);
$process->start(); $process->start();
// Make sure we have live data output // Make sure we have live data output