We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dc7b80 commit adccd7eCopy full SHA for adccd7e
src/Framework/TestRunner.php
@@ -251,7 +251,7 @@ public function run(TestCase $test): void
251
*/
252
public function runInSeparateProcess(TestCase $test, bool $runEntireClass, bool $preserveGlobalState): void
253
{
254
- if ($runEntireClass && $this->isPcntlForkAvailable()) {
+ if ($this->isPcntlForkAvailable()) {
255
// forking the parent process is a more lightweight way to run a test in isolation.
256
// it requires the pcntl extension though.
257
$this->runInFork($test);
0 commit comments