Skip to content

Commit

Permalink
Revert "chore: Disable process timeout"
Browse files Browse the repository at this point in the history
This reverts commit 2577807.
  • Loading branch information
tienvx committed Jul 29, 2023
1 parent 8882d61 commit ef33b34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/tests/Provider/PactVerifyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protected function setUp(): void
{
$publicPath = __DIR__ . '/../../src/Provider/public/';

$this->process = new Process(['php', '-S', '127.0.0.1:7202', '-t', $publicPath], null, null, null, null);
$this->process = new Process(['php', '-S', '127.0.0.1:7202', '-t', $publicPath]);

$this->process->start();
$this->process->waitUntil(function (): bool {
Expand Down
2 changes: 1 addition & 1 deletion tests/PhpPact/Standalone/ProviderVerifier/VerifierTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ protected function setUp(): void
{
$publicPath = __DIR__ . '/../../../_public/';

$this->process = new Process(['php', '-S', '127.0.0.1:7202', '-t', $publicPath], null, null, null, null);
$this->process = new Process(['php', '-S', '127.0.0.1:7202', '-t', $publicPath]);

$this->process->start();
$this->process->waitUntil(function (): bool {
Expand Down

0 comments on commit ef33b34

Please sign in to comment.