Skip to content

Commit 54ebcb7

Browse files
committed
fix: do not ignore the $configFile parameter of the testing environment
1 parent d36d76a commit 54ebcb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/src/Environment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public function startRoadRunner(?array $rrCommand = null, int $commandTimeout =
205205
}
206206

207207
$this->roadRunnerProcess = new Process(
208-
command: $rrCommand ?? [$this->systemInfo->rrExecutable, 'serve'],
208+
command: $rrCommand ?? [$this->systemInfo->rrExecutable, 'serve', '-c', $configFile],
209209
env: $envs,
210210
);
211211
$this->roadRunnerProcess->setTimeout($commandTimeout);

0 commit comments

Comments
 (0)